mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 07:47:20 +08:00
42 lines
1.1 KiB
Bash
42 lines
1.1 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=sudo
|
|
_ver=1.7.4p4
|
|
pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
|
|
pkgrel=2
|
|
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=('55d9906535d70a1de347cd3d3550ee87'
|
|
'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 LICENSE $pkgdir/usr/share/licenses/sudo/LICENSE
|
|
} |