summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--recipes-containers/crun/crun_git.bb10
1 files changed, 7 insertions, 3 deletions
diff --git a/recipes-containers/crun/crun_git.bb b/recipes-containers/crun/crun_git.bb
index 18d0c722..107e08b7 100644
--- a/recipes-containers/crun/crun_git.bb
+++ b/recipes-containers/crun/crun_git.bb
@@ -3,8 +3,8 @@ LICENSE = "GPLv2"
3LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" 3LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
4PRIORITY = "optional" 4PRIORITY = "optional"
5 5
6SRCREV_crun = "858ff2f605983ed420b09fd716c9c8e0cee5c174" 6SRCREV_crun = "f302dd8c02c6fddd2c50d1685d82b7a19aae8afe"
7SRCREV_libocispec = "ece5f6aede6488396f9c84bc985df09f95204e1d" 7SRCREV_libocispec = "c9b8b9524814550a489aa6d38b2dec95633ffa15"
8SRCREV_ispec = "79b036d80240ae530a8de15e1d21c7ab9292c693" 8SRCREV_ispec = "79b036d80240ae530a8de15e1d21c7ab9292c693"
9SRCREV_rspec = "7413a7f753e1bd9a6a9c6dc7f96f55888cbbd476" 9SRCREV_rspec = "7413a7f753e1bd9a6a9c6dc7f96f55888cbbd476"
10 10
@@ -22,12 +22,16 @@ inherit autotools-brokensep pkgconfig
22 22
23PACKAGECONFIG ??= "" 23PACKAGECONFIG ??= ""
24 24
25DEPENDS = "yajl libcap go-md2man-native" 25DEPENDS = "yajl libcap go-md2man-native m4-native"
26# TODO: is there a packageconfig to turn this off ? 26# TODO: is there a packageconfig to turn this off ?
27DEPENDS += "libseccomp" 27DEPENDS += "libseccomp"
28DEPENDS += "systemd" 28DEPENDS += "systemd"
29DEPENDS += "oci-image-spec oci-runtime-spec" 29DEPENDS += "oci-image-spec oci-runtime-spec"
30 30
31do_configure_prepend () {
32 ./autogen.sh
33}
34
31do_install() { 35do_install() {
32 oe_runmake 'DESTDIR=${D}' install 36 oe_runmake 'DESTDIR=${D}' install
33} 37}