From: Chris Larson Date: Tue, 26 Oct 2010 19:14:20 +0000 (-0700) Subject: lzip: add recipe, version 1.11 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e2a741b3d2b4acef820d04efc7a0de96a7e1e2a5;p=openembedded.git lzip: add recipe, version 1.11 Signed-off-by: Chris Larson --- diff --git a/recipes/lzip/lzip_1.11.bb b/recipes/lzip/lzip_1.11.bb new file mode 100644 index 0000000000..f1db467201 --- /dev/null +++ b/recipes/lzip/lzip_1.11.bb @@ -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"