From d466ef49f224a9347fe0375eac8126725e10a0a4 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 23 Feb 2012 23:15:11 +0000 Subject: Thu Feb 23 23:15:11 UTC 2012 --- testing/sudo/PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++ testing/sudo/sudo.pam | 3 +++ 2 files changed, 45 insertions(+) create mode 100644 testing/sudo/PKGBUILD create mode 100644 testing/sudo/sudo.pam (limited to 'testing') diff --git a/testing/sudo/PKGBUILD b/testing/sudo/PKGBUILD new file mode 100644 index 000000000..5b5cd3004 --- /dev/null +++ b/testing/sudo/PKGBUILD @@ -0,0 +1,42 @@ +# $Id: PKGBUILD 150815 2012-02-23 04:13:48Z allan $ +# Maintainer: Allan McRae +# Contributor: Tom Newsom + +pkgname=sudo +_ver=1.8.4p1 +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') +options=('!libtool' '!makeflags') +source=(ftp://ftp.sudo.ws/pub/sudo/$pkgname-$_ver.tar.gz{,.sig} + sudo.pam) +md5sums=('d7f9bf7675bbc6d75e6f9353a175317c' + '51bc933d386af08038349dd61aa243c3' + '4e7ad4ec8f2fe6a40e12bcb2c0b256e3') + +build() { + cd "$srcdir/$pkgname-$_ver" + + ./configure --prefix=/usr --with-pam --libexecdir=/usr/lib \ + --with-env-editor --with-all-insults --with-logfac=auth + make +} + +check() { + cd "$srcdir/$pkgname-$_ver" + make check +} + +package() { + cd "$srcdir/$pkgname-$_ver" + make DESTDIR="$pkgdir" install + + install -Dm644 "$srcdir/sudo.pam" "$pkgdir/etc/pam.d/sudo" + + install -Dm644 doc/LICENSE "$pkgdir/usr/share/licenses/sudo/LICENSE" +} diff --git a/testing/sudo/sudo.pam b/testing/sudo/sudo.pam new file mode 100644 index 000000000..4e586cd22 --- /dev/null +++ b/testing/sudo/sudo.pam @@ -0,0 +1,3 @@ +#%PAM-1.0 +auth required pam_unix.so +auth required pam_nologin.so -- cgit v1.2.3-54-g00ecf