diff options
Diffstat (limited to 'testing/sudo')
-rw-r--r-- | testing/sudo/PKGBUILD | 50 | ||||
-rw-r--r-- | testing/sudo/sudo.pam | 3 |
2 files changed, 0 insertions, 53 deletions
diff --git a/testing/sudo/PKGBUILD b/testing/sudo/PKGBUILD deleted file mode 100644 index 9b0b56838..000000000 --- a/testing/sudo/PKGBUILD +++ /dev/null @@ -1,50 +0,0 @@ -# $Id: PKGBUILD 166772 2012-09-18 20:41:58Z foutrelis $ -# Maintainer: Evangelos Foutras <evangelos@foutrelis.com> -# Contributor: Allan McRae <allan@archlinux.org> -# Contributor: Tom Newsom <Jeepster@gmx.co.uk> - -pkgname=sudo -_sudover=1.8.6p3 -pkgver=${_sudover/p/.p} -pkgrel=1 -pkgdesc="Give certain users the ability to run some commands as root" -arch=('i686' 'x86_64') -url="http://www.sudo.ws/sudo/" -license=('custom') -depends=('glibc' 'pam') -backup=('etc/sudoers' 'etc/pam.d/sudo') -options=('!libtool') -source=(http://www.sudo.ws/sudo/dist/$pkgname-$_sudover.tar.gz - sudo.pam) -sha256sums=('8130df04268f678880c3f423337c56e7d437a0f508a46b1dfefae16b0b20c92e' - 'e7de79d2c73f2b32b20a8e797e54777a2bf19788ec03e48decd6c15cd93718ae') - -build() { - cd "$srcdir/$pkgname-$_sudover" - - ./configure \ - --prefix=/usr \ - --libexecdir=/usr/lib \ - --with-logfac=auth \ - --with-pam \ - --with-env-editor \ - --with-passprompt="[sudo] password for %p: " \ - --with-all-insults - make -} - -check() { - cd "$srcdir/$pkgname-$_sudover" - make check -} - -package() { - cd "$srcdir/$pkgname-$_sudover" - make DESTDIR="$pkgdir" install - - install -Dm644 "$srcdir/sudo.pam" "$pkgdir/etc/pam.d/sudo" - - install -Dm644 doc/LICENSE "$pkgdir/usr/share/licenses/sudo/LICENSE" -} - -# vim:set ts=2 sw=2 et: diff --git a/testing/sudo/sudo.pam b/testing/sudo/sudo.pam deleted file mode 100644 index 4e586cd22..000000000 --- a/testing/sudo/sudo.pam +++ /dev/null @@ -1,3 +0,0 @@ -#%PAM-1.0 -auth required pam_unix.so -auth required pam_nologin.so |