diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-05-05 19:03:27 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-05-05 19:03:27 +0000 |
commit | 2bba02fdaa36de05dffef6a54b57c73259d7db53 (patch) | |
tree | 30629334749dd0fc8fe85f54d508f76aa7ce3cd0 /testing/sudo/PKGBUILD | |
parent | ef61aa5a9cead170fa18dba44609c32bbf18306a (diff) |
Thu May 5 19:03:27 UTC 2011
Diffstat (limited to 'testing/sudo/PKGBUILD')
-rw-r--r-- | testing/sudo/PKGBUILD | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/testing/sudo/PKGBUILD b/testing/sudo/PKGBUILD deleted file mode 100644 index add4a025c..000000000 --- a/testing/sudo/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: PKGBUILD 120368 2011-04-22 22:01:28Z allan $ -# Maintainer: Allan McRae <allan@archlinux.org> -# Contributor: Tom Newsom <Jeepster@gmx.co.uk> - -pkgname=sudo -_ver=1.8.1p1 -pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}} -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') -source=(ftp://ftp.sudo.ws/pub/sudo/$pkgname-$_ver.tar.gz - sudo.pam) -options=('!libtool' '!makeflags') -md5sums=('318337804d976c9419cf3004b707945c' - '4e7ad4ec8f2fe6a40e12bcb2c0b256e3') - -build() { - cd $srcdir/$pkgname-$_ver - - ./configure --prefix=/usr --with-pam --libexecdir=/usr/lib \ - --with-env-editor --with-all-insults --with-logfac=auth - make -} - -package() { - cd $srcdir/$pkgname-$_ver - install -dm755 $pkgdir/var/lib - - make DESTDIR=$pkgdir install - install -Dm644 $srcdir/sudo.pam $pkgdir/etc/pam.d/sudo - - install -Dm644 doc/LICENSE $pkgdir/usr/share/licenses/sudo/LICENSE -} |