meta-virtualization/recipes-containers/sloci-image/sloci-image_git.bb
Bruce Ashfield 08435d20b1 recipes/classes/scripts: Drop SRCPV usage
bitbake has been enhanced such that SRCPV is no longer needed in
PV to handle updating git hashes and task signatures.

We can simplify our PV by dropping SRCPV

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
2023-08-24 01:38:21 +00:00

28 lines
596 B
BlitzBasic

SUMMARY = "A simple CLI tool for packing rootfs into a single-layer OCI image"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=948cd8e59069fad992b0469af9ad7966"
SRC_URI = "git://github.com/jirutka/sloci-image.git;branch=master;protocol=https \
file://0001-sloci-image-fix-variant-quoting.patch \
"
DEPENDS = ""
SRCREV = "4015e49763e5a738026a5bbfcf32b38b5a4fa650"
PV = "v0.1.0+git"
S = "${WORKDIR}/git"
do_compile() {
:
}
do_install() {
cd ${S}
make PREFIX="${exec_prefix}" DESTDIR=${D} install
}
CLEANBROKEN = "1"
BBCLASSEXTEND = "native nativesdk"