diff options
author | Stuart Cardall <developer@it-offshore.co.uk> | 2017-03-20 10:49:29 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-03-20 11:52:27 +0000 |
commit | 1c7680cb2944fa446f9416a99d2a4d8884ab1c9c (patch) | |
tree | 63be9db4de26f16d8d873d6398380aea932f1ce6 /community | |
parent | cb78c667c2a885ab87e37eabb51ae32dc568b892 (diff) | |
download | aports-1c7680cb2944fa446f9416a99d2a4d8884ab1c9c.tar.bz2 aports-1c7680cb2944fa446f9416a99d2a4d8884ab1c9c.tar.xz |
community/firejail: update to 0.9.44.10
https://firejail.wordpress.com/download-2/release-notes/
Diffstat (limited to 'community')
-rw-r--r-- | community/firejail/APKBUILD | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/community/firejail/APKBUILD b/community/firejail/APKBUILD index 2488ce440d..40768f0e59 100644 --- a/community/firejail/APKBUILD +++ b/community/firejail/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Stuart Cardall <developer@it-offshore.co.uk> # Maintainer: Stuart Cardall <developer@it-offshore.co.uk> pkgname=firejail -pkgver=0.9.44.8 +pkgver=0.9.44.10 pkgrel=0 pkgdesc="Linux namespaces and seccomp-bpf sandbox" url="https://firejail.wordpress.com/" @@ -9,6 +9,7 @@ arch="all" license="GPL2" depends="bash" makedepends="linux-headers" +checkdepends="expect" options="suid" subpackages="$pkgname-doc $pkgname-bash-completion:bashcomp:noarch" source="$pkgname-$pkgver.tar.gz::https://github.com/netblue30/$pkgname/archive/$pkgver.tar.gz" @@ -45,11 +46,13 @@ bashcomp() { mv "$pkgdir"/usr/share "$subpkgdir"/usr/ } +check() { + make test || return 1 +} + package() { cd "$builddir" make DESTDIR="$pkgdir" install || return 1 } -md5sums="95eec0a2d212b6a3631042aff04a2c3e firejail-0.9.44.8.tar.gz" -sha256sums="4ca0bc08bb2fdb2ee29f9f086bddbe37f7e62a4325f3facbe1b947bb6c24ee62 firejail-0.9.44.8.tar.gz" -sha512sums="20e5fbc51ca4a7c126939eb95a8b5d76b1eec23a3d12db6cb7e2278fc941b87b11cbda59d7fbd9306b730ea5d8cb98ef4224fd55fe3ab193b634e9e261cc52ef firejail-0.9.44.8.tar.gz" +sha512sums="b3e8e8244d349f1f3b0721578be09f776d75b6dd4862171bfa074c4591be304bd1c2c7c88b25284060532665abd77021eecd2ad9b5fbc809ec91d57dd97cba6c firejail-0.9.44.10.tar.gz" |