aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-containers/sloci-image/sloci-image-native_git.bb
blob: a68c6d9ad31fa214b8d5ad60380842612bf8eabc (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
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 \
           file://0001-sloci-image-fix-variant-quoting.patch \
          "


DEPENDS = ""

SRCREV = "4015e49763e5a738026a5bbfcf32b38b5a4fa650"
PV = "v0.1.0+git${SRCPV}"

inherit native

S = "${WORKDIR}/git"

do_compile() { 
	:
}

do_install() {
	cd ${S}
        make PREFIX="${exec_prefix}" DESTDIR=${D} install
}

CLEANBROKEN = "1"