diff options
author | Kristoffer Ericson <kristoffer_e1@hotmail.com> | 2006-10-25 23:27:19 +0000 |
---|---|---|
committer | Kristoffer Ericson <kristoffer_e1@hotmail.com> | 2006-10-25 23:27:19 +0000 |
commit | e26108affb65e89fcf248a58564b9c25934a04a0 (patch) | |
tree | 3c27feb6d440ed2df41309dae277afc13427c12f /packages/squashfs-tools/squashfs-lzma-tools_3.1r2.bb | |
parent | d7fd0e38cb60cb0ac871723c34616bf542d423cc (diff) | |
parent | 12f3d309156ac047b0826904ef729b83b997b8b5 (diff) |
merge of 5d13f311dd93df73db461d6abca7480b39bbecbc
and 6bdfd4680fb56e499b8a254034efb752dead5002
Diffstat (limited to 'packages/squashfs-tools/squashfs-lzma-tools_3.1r2.bb')
-rw-r--r-- | packages/squashfs-tools/squashfs-lzma-tools_3.1r2.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/squashfs-tools/squashfs-lzma-tools_3.1r2.bb b/packages/squashfs-tools/squashfs-lzma-tools_3.1r2.bb new file mode 100644 index 0000000000..109ac95646 --- /dev/null +++ b/packages/squashfs-tools/squashfs-lzma-tools_3.1r2.bb @@ -0,0 +1,23 @@ +DESCRIPTION = "Squashfs is a highly compressed read-only filesystem for Linux." +SECTION = "base" +LICENSE = "GPLv2" +DEPENDS = "lzma" +PR = "r1" + +SRC_URI = "${SOURCEFORGE_MIRROR}/squashfs/squashfs${@bb.data.getVar('PV',d,1).replace('r','-r')}.tar.gz \ + file://Makefile-3.1.patch;patch=1 \ + file://squashfs3.1r2-tools-replace_zlib_with_lzma.patch;patch=1 \ + file://squashfs3.1r2-tools-lzma_Makefile.patch;patch=1" + +S = "${WORKDIR}/squashfs${@bb.data.getVar('PV',d,1).replace('r','-r')}/squashfs-tools" + +prefix = "" + +do_compile() { + oe_runmake mksquashfs-lzma +} + +do_install () { + install -d ${D}${sbindir} + install -m 0755 mksquashfs-lzma ${D}${sbindir}/ +} |