diff options
Diffstat (limited to 'sudo/Pkgfile')
-rw-r--r--[-rwxr-xr-x] | sudo/Pkgfile | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/sudo/Pkgfile b/sudo/Pkgfile index da90fed6d..c13f2e16c 100755..100644 --- a/sudo/Pkgfile +++ b/sudo/Pkgfile @@ -2,26 +2,27 @@ # URL: http://www.gratisoft.us/sudo/ # Maintainer: Todd dot Miller at courtesan dot com # Packager: tnut at nutyx dot com +# Depends on: linux-pam +# Run on: linux-pam name=sudo version=1.8.3p2 release=1 -source=(ftp://ftp.sudo.ws/pub/sudo/$name-$version.tar.gz) +source=(ftp://ftp.sudo.ws/pub/sudo/$name-$version.tar.gz + sudo.pam) build() { -cd $name-$version + cd $name-$version ./configure --prefix=/usr \ - --sbindir=/usr/sbin \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info \ - --libexecdir=/usr/lib \ - --enable-noargs-shell \ - --without-pam \ - --with-ignore-dot \ - --with-all-insults \ - --enable-shell-sets-home + --libexecdir=/usr/lib \ + --enable-noargs-shell \ + --with-env-editor \ + --with-pam \ + --with-ignore-dot \ + --with-all-insults \ + --enable-shell-sets-home make make DESTDIR=$PKG install + install -Dm644 ../sudo.pam $PKG/etc/pam.d/sudo echo "%admin ALL =(ALL) ALL" >> $PKG/etc/sudoers } - |