mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-05 05:42:14 +02:00
33 lines
900 B
Plaintext
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.9.0
|
|
pkgrel=0
|
|
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="
|
|
5197eeae5a6364c19421dc956861f14777831bc5f651a5ccf461c60499fbb4ff965c24afc31063f028f817236734c08031bcc087e3146798627fa421d6b09591 bubblewrap-0.9.0.tar.gz
|
|
"
|