summaryrefslogtreecommitdiffstats
path: root/testing/shadow/APKBUILD
blob: 624d607028b28281c9c0f08e9800554b5b817d06 (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
# Contributor: William Pitcock <nenolod@dereferenced.org>
# Maintainer:
pkgname=shadow
pkgver=4.1.4.3
pkgrel=4
pkgdesc="PAM-using login and passwd utilities"
url="http://pkg-shadow.alioth.debian.org/"
arch="all"
license="GPL"
depends=
depends_dev="linux-pam-dev"
makedepends="$depends_dev"
install="$pkgname.post-upgrade $pkgname.post-deinstall"
subpackages="$pkgname-doc"
source="http://pkg-shadow.alioth.debian.org/releases/shadow-$pkgver.tar.bz2
	login.pamd"

_builddir="$srcdir"/shadow-$pkgver
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

build() {
	cd "$_builddir"
	./configure --prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info \
		--localstatedir=/var \
		--without-nscd \
		--disable-nls \
		|| return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install || return 1

	# do not install these pam.d files they are broken and outdated
	rm "$pkgdir"/etc/pam.d/*

	# however, install our own for login
	cp "$srcdir"/login.pamd "$pkgdir"/etc/pam.d/login

	# /etc/login.defs is not very useful - replace it with a blank file
	rm "$pkgdir"/etc/login.defs
	touch "$pkgdir"/etc/login.defs
}

md5sums="b8608d8294ac88974f27b20f991c0e79  shadow-4.1.4.3.tar.bz2
72dfc077a61ab7163e312640cc98bba8  login.pamd"