lzip: add recipe, version 1.11
authorChris Larson <chris_larson@mentor.com>
Tue, 26 Oct 2010 19:14:20 +0000 (12:14 -0700)
committerChris Larson <chris_larson@mentor.com>
Tue, 26 Oct 2010 19:15:40 +0000 (12:15 -0700)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
recipes/lzip/lzip_1.11.bb [new file with mode: 0644]

diff --git a/recipes/lzip/lzip_1.11.bb b/recipes/lzip/lzip_1.11.bb
new file mode 100644 (file)
index 0000000..f1db467
--- /dev/null
@@ -0,0 +1,30 @@
+DESCRIPTION = "Lzip is a lossless data compressor based on the LZMA algorithm"
+HOMEPAGE = "http://lzip.nongnu.org/lzip.html"
+LICENSE = "GPLv3+"
+PR = "0"
+
+SRC_URI = "${SAVANNAH_MIRROR}/releases/lzip/lzip-${PV}.tar.gz"
+SRC_URI[md5sum] = "ba9d0a705e47bcd2b73145d238aa7b58"
+SRC_URI[sha256sum] = "c3cfd2396733f6817b25a2bd1b019447ac2fa692f6fe5dc477631a9dbb31b00b"
+
+CONFIGUREOPTS = "\
+    '--srcdir=${S}' \
+    '--prefix=${prefix}' \
+    '--exec-prefix=${exec_prefix}' \
+    '--bindir=${bindir}' \
+    '--datadir=${datadir}' \
+    '--infodir=${infodir}' \
+    '--sysconfdir=${sysconfdir}' \
+    'CXX=${CXX}' \
+    'CPPFLAGS=${CPPFLAGS}' \
+    'CXXFLAGS=${CXXFLAGS}' \
+    'LDFLAGS=${LDFLAGS}' \
+"
+EXTRA_OEMAKE = ""
+
+B = "${S}/obj"
+do_configure () {
+    ${S}/configure ${CONFIGUREOPTS}
+}
+
+BBCLASSEXTEND += "native nativesdk"