diff options
| -rw-r--r-- | meta-oe/recipes-support/lzip/lzip_1.12.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/lzip/lzip_1.12.bb b/meta-oe/recipes-support/lzip/lzip_1.12.bb new file mode 100644 index 0000000000..68f9d0d46c --- /dev/null +++ b/meta-oe/recipes-support/lzip/lzip_1.12.bb | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | DESCRIPTION = "Lzip is a lossless data compressor based on the LZMA algorithm" | ||
| 2 | HOMEPAGE = "http://lzip.nongnu.org/lzip.html" | ||
| 3 | SECTION = "console/utils" | ||
| 4 | LICENSE = "GPLv3" | ||
| 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949" | ||
| 6 | |||
| 7 | SRC_URI = "http://download.savannah.gnu.org/releases/lzip/lzip-${PV}.tar.gz" | ||
| 8 | |||
| 9 | SRC_URI[md5sum] = "69a40172db5ce896b58d862c50fcd517" | ||
| 10 | SRC_URI[sha256sum] = "eabc590d02d404dc1a1cc8e2777ed398370174b68edb22043c8ca0b209dfcd27" | ||
| 11 | |||
| 12 | CONFIGUREOPTS = "\ | ||
| 13 | '--srcdir=${S}' \ | ||
| 14 | '--prefix=${prefix}' \ | ||
| 15 | '--exec-prefix=${exec_prefix}' \ | ||
| 16 | '--bindir=${bindir}' \ | ||
| 17 | '--datadir=${datadir}' \ | ||
| 18 | '--infodir=${infodir}' \ | ||
| 19 | '--sysconfdir=${sysconfdir}' \ | ||
| 20 | 'CXX=${CXX}' \ | ||
| 21 | 'CPPFLAGS=${CPPFLAGS}' \ | ||
| 22 | 'CXXFLAGS=${CXXFLAGS}' \ | ||
| 23 | 'LDFLAGS=${LDFLAGS}' \ | ||
| 24 | " | ||
| 25 | EXTRA_OEMAKE = "" | ||
| 26 | |||
| 27 | B = "${S}/obj" | ||
| 28 | do_configure () { | ||
| 29 | ${S}/configure ${CONFIGUREOPTS} | ||
| 30 | } | ||
| 31 | |||
| 32 | do_install () { | ||
| 33 | oe_runmake 'DESTDIR=${D}' install | ||
| 34 | } | ||
| 35 | |||
| 36 | BBCLASSEXTEND += "native nativesdk" | ||
