diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2018-08-20 13:00:15 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2018-08-20 15:50:44 -0400 |
commit | ab860f2b06463ed4d68b7a4e3d71201d4176bc68 (patch) | |
tree | 059c86a0c0a252b1b6dc0c6092c85889888e57eb | |
parent | cf7de308a2e655753136a56bbb0b42da26e7fab0 (diff) | |
download | abslibre-ab860f2b06463ed4d68b7a4e3d71201d4176bc68.tar.gz abslibre-ab860f2b06463ed4d68b7a4e3d71201d4176bc68.tar.bz2 abslibre-ab860f2b06463ed4d68b7a4e3d71201d4176bc68.zip |
pcr/openrc: Enable shell completion, don't build static libs
MKBASHCOMP : no(default) → yes
MKSTATICLIBS : yes(default) → no
MKZSHCOMP : no(default) → yes
Don't bother building static libs, they get get removed by
makepkg.conf:OPTIONS=(!staticlibs) anyway.
-rw-r--r-- | pcr/openrc/PKGBUILD | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/pcr/openrc/PKGBUILD b/pcr/openrc/PKGBUILD index a9e8cf43f..79c606289 100644 --- a/pcr/openrc/PKGBUILD +++ b/pcr/openrc/PKGBUILD @@ -13,7 +13,7 @@ pkgbase=openrc pkgname=('openrc' 'openrc-init' 'openrc-sysvinit' 'openrc-net') pkgver=0.38.2 -pkgrel=1 +pkgrel=2 arch=('i686' 'x86_64' 'armv7h') url="https://github.com/OpenRC/" license=('BSD2') @@ -32,11 +32,20 @@ _makeargs=( SBINDIR=/usr/bin LIBEXECDIR=/usr/lib/rc + # Because OpenRC documentation is terrible, run this: + # $ grep -rhoE --exclude='*.md' 'MK[^=}? ]+' | sort -u + # If we agree with the default, list it here, but commented out + #MKAUDIT=no + MKBASHCOMP=yes #MKNET=yes MKPAM=pam - MKSELINUX=no + #MKPKGCONFIG=yes + #MKPREFIX=no + #MKSELINUX=no + MKSTATICLIBS=no MKSYSVINIT=yes MKTERMCAP=ncurses + MKZSHCOMP=yes ) build(){ |