diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2016-02-11 16:17:53 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-02-16 09:15:45 +0000 |
commit | 4ee2a98ddfdf82e54da5f4db74e9bd16f0b9bdc3 (patch) | |
tree | 8da1ebcafdfdbcb92895789b17754ef36592999d /main/pax-utils | |
parent | 1e88ba6a8237e4c5b7caad301d16041d1e8dcab3 (diff) | |
download | aports-4ee2a98ddfdf82e54da5f4db74e9bd16f0b9bdc3.tar.bz2 aports-4ee2a98ddfdf82e54da5f4db74e9bd16f0b9bdc3.tar.xz |
main/pax-utils: compile with libcap support
Diffstat (limited to 'main/pax-utils')
-rw-r--r-- | main/pax-utils/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/pax-utils/APKBUILD b/main/pax-utils/APKBUILD index 8a45e5f6a8..88cbfefbd0 100644 --- a/main/pax-utils/APKBUILD +++ b/main/pax-utils/APKBUILD @@ -2,13 +2,13 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=pax-utils pkgver=1.1.5 -pkgrel=0 +pkgrel=1 pkgdesc="ELF related utils for ELF 32/64 binaries" url="https://wiki.gentoo.org/wiki/Hardened/PaX_Utilities" arch="all" license="GPL2" depends="scanelf" -makedepends="linux-headers" +makedepends="linux-headers libcap-dev" source="http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz" subpackages="$pkgname-doc scanelf:_scanelf" @@ -24,7 +24,7 @@ prepare() { build() { cd "$_builddir" - make || return 1 + make USE_CAP=yes || return 1 } package() { |