summaryrefslogtreecommitdiff
path: root/packages/squashfs-tools/squashfs-lzma-tools_3.1r2.bb
diff options
context:
space:
mode:
authorLeon Woestenberg <leon.woestenberg@gmail.com>2006-10-12 15:26:49 +0000
committerMarcin Juszkiewicz <hrw@openembedded.org>2006-10-12 15:26:49 +0000
commit9faf013f17822b391692cabb5a99de267beaa912 (patch)
tree05d4f0c8a52ee436f05782609d99691e2596db0e /packages/squashfs-tools/squashfs-lzma-tools_3.1r2.bb
parent7328b25edee6451c77616afe8e7c27bf3990d8d4 (diff)
squashfs-tools: added 3.1r2 (normal and lzma) - closes #1466
Diffstat (limited to 'packages/squashfs-tools/squashfs-lzma-tools_3.1r2.bb')
-rw-r--r--packages/squashfs-tools/squashfs-lzma-tools_3.1r2.bb24
1 files changed, 24 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..40ccae5ba7
--- /dev/null
+++ b/packages/squashfs-tools/squashfs-lzma-tools_3.1r2.bb
@@ -0,0 +1,24 @@
+DESCRIPTION = "Squashfs is a highly compressed read-only filesystem for Linux."
+MAINTAINER = "Leon Woestenberg <leonw@mailcan.com>"
+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}/
+}