mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-01 19:37:53 +00:00
Changelog: =========== - Fix a double-close on error reading from --args, --seccomp or --add-seccomp-fd argument - Improve memory allocation behaviour - Silence various compiler warnings - Silence an Automake warning - Fix a test failure when running as uid 0 in a container - Fix a test failure when /mnt is a symlink - Fix a test failure on NixOS - Add --argv0 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
25 lines
992 B
BlitzBasic
25 lines
992 B
BlitzBasic
DESCRIPTION = "Unprivileged sandboxing tool"
|
|
HOMEPAGE = "https://github.com/containers/bubblewrap"
|
|
LICENSE = "LGPL-2.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2"
|
|
|
|
DEPENDS = "libcap"
|
|
|
|
SRC_URI = "https://github.com/containers/${BPN}/releases/download/v${PV}/${BP}.tar.xz"
|
|
SRC_URI[sha256sum] = "c6347eaced49ac0141996f46bba3b089e5e6ea4408bc1c43bab9f2d05dd094e1"
|
|
|
|
inherit autotools bash-completion github-releases manpages pkgconfig
|
|
|
|
GITHUB_BASE_URI = "https://github.com/containers/${BPN}/releases/"
|
|
|
|
PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'selinux', d)}"
|
|
PACKAGECONFIG[manpages] = "--enable-man,--disable-man,libxslt-native docbook-xsl-stylesheets-native xmlto-native"
|
|
PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux"
|
|
PACKAGECONFIG[setuid] = "--with-priv-mode=setuid,--with-priv-mode=none"
|
|
|
|
PACKAGES += "${PN}-zsh-completion"
|
|
|
|
FILES:${PN}-zsh-completion = "${datadir}/zsh/site-functions"
|
|
|
|
BBCLASSEXTEND = "native"
|