core/sudo/PKGBUILD

62 lines
1.5 KiB
Bash
Raw Normal View History

2010-03-13 23:25:19 +08:00
pkgname=sudo
2017-06-01 08:55:16 +08:00
_sudover=1.8.20p2
2014-11-30 06:29:52 +08:00
pkgver=${_sudover/p/.p}
2011-09-21 01:46:59 +08:00
pkgrel=1
2016-03-17 01:38:49 +08:00
pkgdesc="Give certain users the ability to run some commands as root"
arch=('x86_64')
2010-03-13 23:25:19 +08:00
url="http://www.sudo.ws/sudo/"
license=('custom')
2014-11-30 06:29:52 +08:00
depends=('glibc' 'pam' 'libldap')
2010-03-13 23:25:19 +08:00
backup=('etc/sudoers' 'etc/pam.d/sudo')
2017-05-31 01:10:05 +08:00
groups=('base-devel')
2016-03-17 01:38:49 +08:00
install=$pkgname.install
source=(http://www.sudo.ws/sudo/dist/$pkgname-$_sudover.tar.gz{,.sig}
2016-03-17 01:38:49 +08:00
sudo.pam)
2017-06-01 08:55:16 +08:00
sha256sums=('bd42ae1059e935f795c69ea97b3de09fe9410a58a74b5d5e6836eb5067a445d9'
2016-03-17 01:38:49 +08:00
'SKIP'
'd1738818070684a5d2c9b26224906aad69a4fea77aabd960fc2675aee2df1fa2')
validpgpkeys=('CCB24BE9E9481B15D34159535A89DFA27EE470C4')
2010-03-13 23:25:19 +08:00
build() {
2014-11-30 06:29:52 +08:00
cd "$srcdir/$pkgname-$_sudover"
2010-03-13 23:25:19 +08:00
2014-11-30 06:29:52 +08:00
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--libexecdir=/usr/lib \
--with-rundir=/run/sudo \
--with-vardir=/var/db/sudo \
--with-logfac=auth \
2017-05-31 01:10:05 +08:00
--enable-gcrypt \
2016-03-17 01:38:49 +08:00
--enable-tmpfiles.d \
2014-11-30 06:29:52 +08:00
--with-pam \
2016-03-17 01:38:49 +08:00
--with-sssd \
2014-11-30 06:29:52 +08:00
--with-ldap \
--with-ldap-conf-file=/etc/openldap/ldap.conf \
--with-env-editor \
--with-passprompt="[sudo] password for %p: " \
--with-all-insults
2010-11-21 01:27:27 +08:00
make
2010-03-13 23:25:19 +08:00
}
2014-11-30 06:29:52 +08:00
check() {
cd "$srcdir/$pkgname-$_sudover"
make check
}
2014-11-30 06:29:52 +08:00
package() {
2016-03-17 01:38:49 +08:00
cd "$srcdir/$pkgname-$_sudover"
make DESTDIR="$pkgdir" install
2010-03-13 23:25:19 +08:00
2014-11-30 06:29:52 +08:00
# Remove /run/sudo directory from the package; we create it using tmpfiles.d
rmdir "$pkgdir/run/sudo"
rmdir "$pkgdir/run"
install -Dm644 "$srcdir/sudo.pam" "$pkgdir/etc/pam.d/sudo"
install -Dm644 doc/LICENSE "$pkgdir/usr/share/licenses/sudo/LICENSE"
2011-09-21 01:46:59 +08:00
}
# vim:set ts=2 sw=2 et: