psykose 3052c1fd21 */*: drop ${JOBS:+-j ${JOBS}}
samurai already reads SAMUFLAGS set to job count so this is redundant
same for MAKEFLAGS and make
2023-05-23 01:00:32 +02:00

33 lines
900 B
Plaintext

# 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
"