diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-03-17 21:20:17 +0100 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-03-17 21:20:17 +0100 |
commit | fae2e83aa4505e71d5d9ca9a2bc56c19e54a8798 (patch) | |
tree | db3ad6a655ab5933ff3f5e55678552a0baac0f9a /main/libseccomp | |
parent | 9359719dee59b32005b458bfa04abbc5eb2545d1 (diff) | |
download | aports-fae2e83aa4505e71d5d9ca9a2bc56c19e54a8798.tar.bz2 aports-fae2e83aa4505e71d5d9ca9a2bc56c19e54a8798.tar.xz |
main/libseccomp: move test dependency into checkdepends
Diffstat (limited to 'main/libseccomp')
-rw-r--r-- | main/libseccomp/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/libseccomp/APKBUILD b/main/libseccomp/APKBUILD index d0376df2b4..f6a40a0a48 100644 --- a/main/libseccomp/APKBUILD +++ b/main/libseccomp/APKBUILD @@ -7,11 +7,12 @@ pkgdesc="An interface to the Linux Kernel's syscall filtering mechanism" url="https://github.com/seccomp/libseccomp" arch="all" license="LGPLv2.1" -makedepends="linux-headers bash" +makedepends="linux-headers" +checkdepends="bash" subpackages="$pkgname-dev $pkgname-doc" source="https://github.com/seccomp/libseccomp/releases/download/v$pkgver/libseccomp-$pkgver.tar.gz remove-redefinition-prctl.patch" -builddir="$srcdir"/libseccomp-$pkgver +builddir="$srcdir/libseccomp-$pkgver" build() { cd "$builddir" |