aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2009-04-13 11:47:23 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2009-04-13 11:47:23 +0000
commit477d44b50b5292ee75a95e6e020b850307988e02 (patch)
tree8fcff5154109de59174c4c6e8fdcba12f312803e
parent838e29ee1c0b19dcff08a28343045c3c3243dce4 (diff)
downloadalpine_aports-477d44b50b5292ee75a95e6e020b850307988e02.tar.bz2
alpine_aports-477d44b50b5292ee75a95e6e020b850307988e02.tar.xz
alpine_aports-477d44b50b5292ee75a95e6e020b850307988e02.zip
core/sudo: upgrade to 1.7.0
-rw-r--r--core/sudo/APKBUILD13
1 files changed, 6 insertions, 7 deletions
diff --git a/core/sudo/APKBUILD b/core/sudo/APKBUILD
index 6baa11b610..61d84eae4c 100644
--- a/core/sudo/APKBUILD
+++ b/core/sudo/APKBUILD
@@ -1,18 +1,17 @@
1# Maintainer: Natanael Copa <ncopa@alpinelinux.org> 1# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
2pkgname=sudo 2pkgname=sudo
3pkgver=1.6.9_p17 3pkgver=1.7.0
4_myver=1.6.9p17 4pkgrel=0
5pkgrel=1
6pkgdesc="Give certain users the ability to run some commands as root" 5pkgdesc="Give certain users the ability to run some commands as root"
7url="http://www.sudo.ws/sudo/" 6url="http://www.sudo.ws/sudo/"
8license='custom ISC' 7license='custom ISC'
9depends='uclibc' 8depends='uclibc'
10backup='etc/sudoers' 9backup='etc/sudoers'
11source="ftp://ftp.sudo.ws/pub/sudo/$pkgname-$_myver.tar.gz" 10source="ftp://ftp.sudo.ws/pub/sudo/$pkgname-$pkgver.tar.gz"
12subpackages="$pkgname-doc" 11subpackages="$pkgname-doc"
13 12
14build() { 13build() {
15 cd "$srcdir/$pkgname-$_myver" 14 cd "$srcdir/$pkgname-$pkgver"
16 15
17 ./configure --prefix=/usr \ 16 ./configure --prefix=/usr \
18 --with-env-editor \ 17 --with-env-editor \
@@ -21,7 +20,7 @@ build() {
21 --without-offensive-insults \ 20 --without-offensive-insults \
22 || return 1 21 || return 1
23 make || return 1 22 make || return 1
24 make DESTDIR="$pkgdir" install || return 1 23 make -j1 DESTDIR="$pkgdir" install || return 1
25} 24}
26 25
27md5sums="60daf18f28e2c1eb7641c4408e244110 sudo-1.6.9p17.tar.gz" 26md5sums="5fd96bba35fe29b464f7aa6ad255f0a6 sudo-1.7.0.tar.gz"