CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
python3: updated to 3.9.10
[ports/core-arm64.git] / linux-pam / Pkgfile
... / ...
CommitLineData
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
6name=linux-pam
7version=1.5.2
8release=2
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 CONFIG_SHELL=/bin/bash ./configure \
16 --prefix=/usr \
17 --libdir=/lib \
18 --disable-nis \
19 --disable-nls \
20 --disable-prelude \
21 --enable-db=no
22
23 make
24 make DESTDIR=$PKG install
25
26 mv $PKG/lib/pkgconfig $PKG/usr/lib
27
28 # unix_chkpwd needs to be setuid root
29 chmod u+s $PKG/sbin/unix_chkpwd
30
31 mkdir -p $PKG/etc/pam.d
32 install -o root -g root -m 0644 \
33 $SRC/{common-*,other} \
34 $PKG/etc/pam.d/
35
36 rm -r $PKG/usr/{lib/systemd,share/doc}
37}