diff options
Diffstat (limited to 'cramfs')
-rw-r--r-- | cramfs/cramfs-native_1.1.oe | 17 | ||||
-rw-r--r-- | cramfs/cramfs_1.1.oe | 14 |
2 files changed, 31 insertions, 0 deletions
diff --git a/cramfs/cramfs-native_1.1.oe b/cramfs/cramfs-native_1.1.oe index e69de29bb2..f7fcfd6080 100644 --- a/cramfs/cramfs-native_1.1.oe +++ b/cramfs/cramfs-native_1.1.oe @@ -0,0 +1,17 @@ +SECTION = "base" +SRC_URI = "${SOURCEFORGE_MIRROR}/cramfs/cramfs-1.1.tar.gz" +DEPENDS = "zlib-native" + +S = "${WORKDIR}/cramfs-${PV}" + +inherit native + +do_compile() { + oe_runmake +} + +do_stage() { + install mkcramfs ${STAGING_BINDIR} + install cramfsck ${STAGING_BINDIR} +} + diff --git a/cramfs/cramfs_1.1.oe b/cramfs/cramfs_1.1.oe index e69de29bb2..dcf4e54b6c 100644 --- a/cramfs/cramfs_1.1.oe +++ b/cramfs/cramfs_1.1.oe @@ -0,0 +1,14 @@ +SECTION = "base" +SRC_URI = "${SOURCEFORGE_MIRROR}/cramfs/cramfs-1.1.tar.gz" +DEPENDS = "zlib" + +do_compile() { + oe_runmake +} + +do_install() { + install -d ${D}${bindir} + install mkcramfs ${D}${bindir} + install cramfsck ${D}${bindir} +} + |