mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-05 05:15:25 +02:00

Bumping conmon to version v2.1.3-168-gaee638f, which comprises the following commits: 02c6ea6 Avoid bogus journal filling errors Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
33 lines
822 B
BlitzBasic
33 lines
822 B
BlitzBasic
SUMMARY = "An OCI container runtime monitor"
|
|
SECTION = "console/utils"
|
|
HOMEPAGE = "https://github.com/containers/conmon"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=61af0b6932ea7b12fb9142721043bc77"
|
|
|
|
inherit features_check
|
|
REQUIRED_DISTRO_FEATURES ?= "seccomp"
|
|
|
|
DEPENDS = "glib-2.0 go-md2man-native libseccomp"
|
|
|
|
SRCREV = "aee638f5b23d408b42c74ece8f7bdb977078386a"
|
|
SRC_URI = "\
|
|
git://github.com/containers/conmon.git;branch=main;protocol=https \
|
|
"
|
|
|
|
PV = "2.1.12+git"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit pkgconfig
|
|
|
|
export GOCACHE = "${B}/.cache"
|
|
|
|
EXTRA_OEMAKE = "PREFIX=${prefix} BINDIR=${bindir} LIBEXECDIR=${libexecdir}"
|
|
|
|
PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}"
|
|
PACKAGECONFIG[systemd] = ",,systemd"
|
|
|
|
do_install() {
|
|
oe_runmake 'DESTDIR=${D}' install
|
|
}
|