summaryrefslogtreecommitdiffstats
path: root/recipes-containers/sloci-image/sloci-image-native_git.bb
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-containers/sloci-image/sloci-image-native_git.bb')
-rw-r--r--recipes-containers/sloci-image/sloci-image-native_git.bb11
1 files changed, 7 insertions, 4 deletions
diff --git a/recipes-containers/sloci-image/sloci-image-native_git.bb b/recipes-containers/sloci-image/sloci-image-native_git.bb
index 56e8e0f1..b3b11bd9 100644
--- a/recipes-containers/sloci-image/sloci-image-native_git.bb
+++ b/recipes-containers/sloci-image/sloci-image-native_git.bb
@@ -1,7 +1,10 @@
1SUMMARY = "A simple CLI tool for packing rootfs into a single-layer OCI image" 1SUMMARY = "A simple CLI tool for packing rootfs into a single-layer OCI image"
2LICENSE = "MIT" 2LICENSE = "MIT"
3LIC_FILES_CHKSUM = "file://git/LICENSE;md5=948cd8e59069fad992b0469af9ad7966" 3LIC_FILES_CHKSUM = "file://LICENSE;md5=948cd8e59069fad992b0469af9ad7966"
4SRC_URI = "git://github.com/jirutka/sloci-image.git" 4SRC_URI = "git://github.com/jirutka/sloci-image.git \
5 file://0001-sloci-image-fix-variant-quoting.patch \
6 "
7
5 8
6DEPENDS = "" 9DEPENDS = ""
7 10
@@ -10,13 +13,13 @@ PV = "v0.1.0+git${SRCPV}"
10 13
11inherit native 14inherit native
12 15
13S = "${WORKDIR}" 16S = "${WORKDIR}/git"
14 17
15do_compile() { 18do_compile() {
16 : 19 :
17} 20}
18 21
19do_install() { 22do_install() {
20 cd ${S}/git 23 cd ${S}
21 make PREFIX="${exec_prefix}" DESTDIR=${D} install 24 make PREFIX="${exec_prefix}" DESTDIR=${D} install
22} 25}