diff options
Diffstat (limited to 'meta-oe/recipes-security/bubblewrap/bubblewrap_0.10.0.bb')
-rw-r--r-- | meta-oe/recipes-security/bubblewrap/bubblewrap_0.10.0.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-oe/recipes-security/bubblewrap/bubblewrap_0.10.0.bb b/meta-oe/recipes-security/bubblewrap/bubblewrap_0.10.0.bb new file mode 100644 index 0000000000..41ab0cfc32 --- /dev/null +++ b/meta-oe/recipes-security/bubblewrap/bubblewrap_0.10.0.bb | |||
@@ -0,0 +1,27 @@ | |||
1 | DESCRIPTION = "Unprivileged sandboxing tool" | ||
2 | HOMEPAGE = "https://github.com/containers/bubblewrap" | ||
3 | LICENSE = "LGPL-2.0-or-later" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2" | ||
5 | |||
6 | DEPENDS = "libcap" | ||
7 | |||
8 | SRC_URI = " \ | ||
9 | https://github.com/containers/${BPN}/releases/download/v${PV}/${BP}.tar.xz \ | ||
10 | file://0001-Use-stdbool.h-for-booleans.patch \ | ||
11 | " | ||
12 | SRC_URI[sha256sum] = "65d92cf44a63a51e1b7771f70c05013dce5bd6b0b2841c4b4be54b0c45565471" | ||
13 | |||
14 | inherit autotools bash-completion github-releases manpages pkgconfig | ||
15 | |||
16 | GITHUB_BASE_URI = "https://github.com/containers/${BPN}/releases/" | ||
17 | |||
18 | PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'selinux', d)}" | ||
19 | PACKAGECONFIG[manpages] = "--enable-man,--disable-man,libxslt-native docbook-xsl-stylesheets-native xmlto-native" | ||
20 | PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux" | ||
21 | PACKAGECONFIG[setuid] = "--with-priv-mode=setuid,--with-priv-mode=none" | ||
22 | |||
23 | PACKAGES += "${PN}-zsh-completion" | ||
24 | |||
25 | FILES:${PN}-zsh-completion = "${datadir}/zsh/site-functions" | ||
26 | |||
27 | BBCLASSEXTEND = "native" | ||