summaryrefslogtreecommitdiff
path: root/packages/squashfs-tools/squashfs-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-tools_3.1r2.bb
parent7328b25edee6451c77616afe8e7c27bf3990d8d4 (diff)
squashfs-tools: added 3.1r2 (normal and lzma) - closes #1466
Diffstat (limited to 'packages/squashfs-tools/squashfs-tools_3.1r2.bb')
-rw-r--r--packages/squashfs-tools/squashfs-tools_3.1r2.bb23
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/squashfs-tools/squashfs-tools_3.1r2.bb b/packages/squashfs-tools/squashfs-tools_3.1r2.bb
new file mode 100644
index 0000000000..e02f122a83
--- /dev/null
+++ b/packages/squashfs-tools/squashfs-tools_3.1r2.bb
@@ -0,0 +1,23 @@
+DESCRIPTION = "Squashfs is a highly compressed read-only filesystem for Linux."
+MAINTAINER = "Leon Woestenberg <leonw@mailcan.com>"
+SECTION = "base"
+LICENSE = "GPLv2"
+PR = "r1"
+
+DEPENDS = "zlib"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/squashfs/squashfs${@bb.data.getVar('PV',d,1).replace('r','-r')}.tar.gz \
+ file://Makefile-3.1.patch;patch=1"
+
+S = "${WORKDIR}/squashfs${@bb.data.getVar('PV',d,1).replace('r','-r')}/squashfs-tools"
+
+prefix = ""
+
+do_compile() {
+ oe_runmake mksquashfs
+}
+
+do_install () {
+ install -d ${D}${sbindir}
+ install -m 0755 mksquashfs ${D}${sbindir}/
+}