SUMMARY = "Jailhouse cell configuration compiler (native)" LICENSE = "GPL-2.0-only" LIC_FILES_CHKSUM = "file://COPYING;md5=9fa7f895f96bde2d47fd5b7d95b6ba4d" SRC_URI = "git://github.com/siemens/jailhouse.git;branch=master;protocol=https" SRCREV = "e57d1eff6d55aeed5f977fe4e2acfb6ccbdd7560" S = "${WORKDIR}/git" inherit native DEPENDS = "python3-native" do_compile() { oe_runmake tools } do_install() { install -d ${D}${bindir} install -m 0755 ${S}/tools/jailhouse-cell-linux ${D}${bindir}/ } do_install:append() { install -d ${D}${datadir}/jailhouse/tools/pyjailhouse install -m 0644 ${S}/pyjailhouse/*.py ${D}${datadir}/jailhouse/tools/pyjailhouse/ }