blob: fca87473983aef16a04bcf7d23a791a1855a8947 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Contributor: Timo Teräs <timo.teras@iki.fi>
# Maintainer: Timo Teräs <timo.teras@iki.fi>
pkgname=bubblewrap
pkgver=0.8.0
pkgrel=1
pkgdesc="Unprivileged sandboxing tool"
url="https://github.com/containers/bubblewrap"
arch="all"
license="LGPL-2.0-or-later"
options="!check" # Testsuite fails
makedepends="bash meson libcap-dev docbook-xsl"
subpackages="$pkgname-doc $pkgname-bash-completion $pkgname-zsh-completion"
source="bubblewrap-$pkgver.tar.gz::https://github.com/containers/bubblewrap/archive/v$pkgver.tar.gz"
# secfixes:
# 0.4.1-r0:
# - CVE-2020-5291
build() {
abuild-meson \
-Drequire_userns=true \
. output
meson compile -C output
}
package() {
DESTDIR="$pkgdir" meson install --no-rebuild -C output
}
sha512sums="
b220e757a7abe95b5cfea949c8da852d6a324bd453eaa6747da73bb29887bb67a2bf95ece2a7279d7573d396f01b8bce6d2ef1143e07f21e3c78c95510e56c26 bubblewrap-0.8.0.tar.gz
"
|