aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-containers/conmon/conmon_2.0.2.bb
blob: 378c3096cf4a7c90b78220c1ad618fd4c34314fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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"

DEPENDS = "glib-2.0"

SRCREV = "65fe0226d85b69fc9e527e376795c9791199153d"
SRC_URI = "\
    git://github.com/containers/conmon.git \
"

SRC_URI[md5sum] = "5c711911d766d76813333c3812277574"
SRC_URI[sha256sum] = "4c31278b2c03e5be5a696c3088bc86cf2557a70e00f697799c163aba18e3c40e"

S = "${WORKDIR}/git"

inherit pkgconfig

EXTRA_OEMAKE = "PREFIX=${prefix} BINDIR=${bindir} LIBEXECDIR=${libexecdir}"

do_install() {
    oe_runmake 'DESTDIR=${D}' install
}

FILES_${PN} += " \
    ${bindir}/conmon \
"