CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
python3: updated to 3.9.10
[ports/core-arm.git] / linux-pam / Pkgfile
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
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5
6 name=linux-pam
7 version=1.5.2
8 release=2
9 source=(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
13 build() {
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
22 make
23 make DESTDIR=$PKG install
24
25 mv $PKG/lib/pkgconfig $PKG/usr/lib
26
27 # unix_chkpwd needs to be setuid root
28 chmod u+s $PKG/sbin/unix_chkpwd
29
30 mkdir -p $PKG/etc/pam.d
31 install -o root -g root -m 0644 \
32 $SRC/{common-*,other} \
33 $PKG/etc/pam.d/
34
35 rm -r $PKG/usr/{lib/systemd,share/doc}
36 }