summaryrefslogtreecommitdiff
path: root/libre/parabola-hackers/PKGBUILD
blob: eeee1bd558ffdaca6ba9aeeb6004a4a16cb29972 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net>

pkgbase=parabola-hackers
pkgname=(parabola-hackers parabola-hackers-nshd)
pkgver=20160518
_gitver=fd98ee554c3c785ee83460e83027d56891fbd9b2
pkgdesc='Programs for doing magic with hackers.git'
url='https://projects.parabola.nu/packages/parabola-hackers.git/'
license=('GPL')

pkgrel=1
arch=('x86_64' 'i686')
makedepends=('go')
source=("https://repo.parabola.nu/other/$pkgbase/$pkgbase-$pkgver.tar.gz")
md5sums=('e89f4c3749cb4cf2fac081e339675f9f')

# Don't use mksource=(git://...) because we need --recursive
mksource() {
	cd "$srcdir"
	git clone --recursive git://projects.parabola.nu/packages/parabola-hackers.git $pkgbase-$pkgver
	cd $pkgbase-$pkgver
	git checkout $_gitver
	make generate
}

build() {
	cd "$srcdir/$pkgbase-$pkgver"

	printf '%s\n' \
	    prefix='/usr' \
	    bindir='$(libexecdir)/$(PACKAGE)' \
	    libexecdir='$(libdir)' \
	    sysconfdir='/etc' \
	    > config.mk

	make
}

package_parabola-hackers() {
	backup=(etc/$pkgbase.yml)
	depends=('ruby')

	cd "$srcdir/$pkgbase-$pkgver"
	make DESTDIR="${pkgdir}" install
	find "$pkgdir" -type f \( -name 'nshd*' -o -name shadow \) -delete
	find "$pkgdir" -type d -empty -exec rmdir -p --ignore-fail-on-non-empty -- {} +
}

package_parabola-hackers-nshd() {
	pkgdesc='NSS and PAM integration for parabola-hackers'
	depends=("parabola-hackers=$pkgver" 'nss-pam-ldapd')
	backup=(etc/nshd/shadow)
	install=parabola-hackers-nshd.install
	replaces=(nshd)
	conflicts=(nshd)

	cd "$srcdir/$pkgbase-$pkgver"
	make DESTDIR="${pkgdir}" install
	find "$pkgdir" -type f -not \( -name 'nshd*' -o -name shadow \) -delete
	find "$pkgdir" -type d -empty -exec rmdir -p --ignore-fail-on-non-empty -- {} +
}