mirror of
https://github.com/Jguer/yay.git
synced 2025-10-03 00:04:05 -04:00
67 lines
1.8 KiB
Plaintext
67 lines
1.8 KiB
Plaintext
# $Id: PKGBUILD 225542 2014-11-02 04:43:40Z 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.11p2
|
|
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')
|
|
groups=('base-devel')
|
|
depends=('glibc' 'pam' 'libldap')
|
|
backup=('etc/sudoers' 'etc/pam.d/sudo')
|
|
install=$pkgname.install
|
|
source=(http://www.sudo.ws/sudo/dist/$pkgname-$_sudover.tar.gz{,.sig}
|
|
sudo.tmpfiles.conf
|
|
sudo.pam)
|
|
sha256sums=('8133849418fa18cf6b6bb6893d1855ff7afe21db8923234a00bf045c90fba1ad'
|
|
'SKIP'
|
|
'080dd97111b3149f8d140ffac68c88acd63da9eacc81fbcc7c43591be13b42fe'
|
|
'd1738818070684a5d2c9b26224906aad69a4fea77aabd960fc2675aee2df1fa2')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$_sudover"
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sbindir=/usr/bin \
|
|
--libexecdir=/usr/lib \
|
|
--with-rundir=/run/sudo \
|
|
--with-vardir=/var/db/sudo \
|
|
--with-logfac=auth \
|
|
--with-pam \
|
|
--with-ldap \
|
|
--with-ldap-conf-file=/etc/openldap/ldap.conf \
|
|
--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
|
|
|
|
# Remove /run/sudo directory from the package; we create it using tmpfiles.d
|
|
rmdir "$pkgdir/run/sudo"
|
|
rmdir "$pkgdir/run"
|
|
|
|
install -Dm644 "$srcdir/sudo.tmpfiles.conf" \
|
|
"$pkgdir/usr/lib/tmpfiles.d/sudo.conf"
|
|
|
|
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:
|