summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8b181d6862f68490d1585fffc7cda47e82aced04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Maintainer: Christian Hesse <mail@eworm.de>

pkgname=nullshell-git
pkgver=0.0.6.r0.g967686e
pkgrel=1
pkgdesc="do nothing but print keep alive characters, can be used for login shell - git checkout"
arch=('i686' 'x86_64')
makedepends=('markdown' 'git')
url="https://github.com/eworm-de/nullshell"
conflicts=('nullshell')
license=('GPL')
install=nullshell.install
source=('git://github.com/eworm-de/nullshell.git')
sha256sums=('SKIP')

pkgver() {
	cd nullshell/

	if GITTAG="$(git describe --abbrev=0 --tags 2>/dev/null)"; then
		echo "$(sed -e "s/^${pkgname%%-git}//" -e 's/^[-_/a-zA-Z]\+//' -e 's/[-_+]/./g' <<< ${GITTAG}).r$(git rev-list --count ${GITTAG}..).g$(git log -1 --format="%h")"
	else
		echo "0.r$(git rev-list --count master).g$(git log -1 --format="%h")"
	fi
}

build() {
	cd nullshell/

	make
}

package() {
	cd nullshell/

	make DESTDIR="${pkgdir}" install
}