aboutsummaryrefslogtreecommitdiffstats
path: root/main/sudo/APKBUILD
diff options
context:
space:
mode:
authorSören Tempel <soeren+git@soeren-tempel.net>2015-09-23 21:43:20 +0200
committerFrancesco Colista <fcolista@alpinelinux.org>2015-09-30 06:40:58 +0000
commit36355597ce65d9eb0417e4c6445e2df4566e53bb (patch)
tree6ab342560b6590885ca301cce2d0939d25f1550b /main/sudo/APKBUILD
parent459370b1a8e495d502f2bf95e405920a5da1d940 (diff)
downloadaports-36355597ce65d9eb0417e4c6445e2df4566e53bb.tar.bz2
aports-36355597ce65d9eb0417e4c6445e2df4566e53bb.tar.xz
main/sudo: fix installation of man pages
Before this commit man pages where installed to /usr/share/man/cat[0-8] and didn't use mdoc macros.
Diffstat (limited to 'main/sudo/APKBUILD')
-rw-r--r--main/sudo/APKBUILD5
1 files changed, 4 insertions, 1 deletions
diff --git a/main/sudo/APKBUILD b/main/sudo/APKBUILD
index f94ee5cd05..3d19c02b6a 100644
--- a/main/sudo/APKBUILD
+++ b/main/sudo/APKBUILD
@@ -7,7 +7,7 @@ if [ "${pkgver%_*}" != "$pkgver" ]; then
else
_realver=$pkgver
fi
-pkgrel=0
+pkgrel=1
pkgdesc="Give certain users the ability to run some commands as root"
url="http://www.sudo.ws/sudo/"
arch="all"
@@ -39,7 +39,10 @@ build() {
--host=$CHOST \
--prefix=/usr \
--libexecdir=/usr/lib \
+ --mandir=/usr/share/man \
--with-env-editor \
+ --with-man \
+ --with-mdoc \
--without-pam \
--without-skey \
--with-passprompt="[sudo] password for %p: " \