CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
linux-pam: updated to 1.5.2
[ports/core-arm.git] / linux-pam / Pkgfile
CommitLineData
43b7dce9
VM
1# Description: Pluggable Authentication Modules (PAM) for Linux
2# URL: http://www.linux-pam.org/
3# Maintainer: CRUX System Team, core-ports at crux dot nu
8abd7ad6 4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
43b7dce9
VM
5
6name=linux-pam
8abd7ad6 7version=1.5.2
43b7dce9
VM
8release=1
9source=(https://github.com/$name/$name/releases/download/v${version}/Linux-PAM-$version.tar.xz \
10 common-account common-auth common-password common-session \
11 other)
12
13build() {
14 cd Linux-PAM-$version
15 ./configure --prefix=/usr \
16 --libdir=/lib \
17 --disable-nis \
18 --disable-nls \
19 --disable-prelude \
20 --enable-db=no
21 make
22 make DESTDIR=$PKG install
23
24 # unix_chkpwd needs to be setuid root
25 chmod u+s $PKG/sbin/unix_chkpwd
26
27 mkdir -p $PKG/etc/pam.d
28 install -o root -g root -m 0644 \
29 $SRC/{common-*,other} \
30 $PKG/etc/pam.d/
31
32 rm -r $PKG/usr/share/doc
33}