summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/lzip
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/lzip')
-rw-r--r--meta/recipes-extended/lzip/lzip_1.24.1.bb (renamed from meta/recipes-extended/lzip/lzip_1.22.bb)5
-rw-r--r--meta/recipes-extended/lzip/lzlib_1.14.bb39
2 files changed, 42 insertions, 2 deletions
diff --git a/meta/recipes-extended/lzip/lzip_1.22.bb b/meta/recipes-extended/lzip/lzip_1.24.1.bb
index d21c36a3f4..6eda012734 100644
--- a/meta/recipes-extended/lzip/lzip_1.22.bb
+++ b/meta/recipes-extended/lzip/lzip_1.24.1.bb
@@ -1,13 +1,14 @@
1SUMMARY = "Lossless data compressor based on the LZMA algorithm" 1SUMMARY = "Lossless data compressor based on the LZMA algorithm"
2HOMEPAGE = "http://lzip.nongnu.org/lzip.html" 2HOMEPAGE = "http://lzip.nongnu.org/lzip.html"
3DESCRIPTION = "Lzip is a lossless data compressor with a user interface similar to the one of gzip or bzip2. Lzip uses a simplified form of the Lempel-Ziv-Markov chain-Algorithm (LZMA) stream format, chosen to maximize safety and interoperability."
3SECTION = "console/utils" 4SECTION = "console/utils"
4LICENSE = "GPLv2+" 5LICENSE = "GPL-2.0-or-later"
5LIC_FILES_CHKSUM = "file://COPYING;md5=76d6e300ffd8fb9d18bd9b136a9bba13 \ 6LIC_FILES_CHKSUM = "file://COPYING;md5=76d6e300ffd8fb9d18bd9b136a9bba13 \
6 file://decoder.cc;beginline=3;endline=16;md5=18c279060cd0be128188404b45837f88 \ 7 file://decoder.cc;beginline=3;endline=16;md5=18c279060cd0be128188404b45837f88 \
7 " 8 "
8 9
9SRC_URI = "${SAVANNAH_GNU_MIRROR}/lzip/lzip-${PV}.tar.gz" 10SRC_URI = "${SAVANNAH_GNU_MIRROR}/lzip/lzip-${PV}.tar.gz"
10SRC_URI[sha256sum] = "c3342d42e67139c165b8b128d033b5c96893a13ac5f25933190315214e87a948" 11SRC_URI[sha256sum] = "30c9cb6a0605f479c496c376eb629a48b0a1696d167e3c1e090c5defa481b162"
11 12
12B = "${WORKDIR}/build" 13B = "${WORKDIR}/build"
13do_configure[cleandirs] = "${B}" 14do_configure[cleandirs] = "${B}"
diff --git a/meta/recipes-extended/lzip/lzlib_1.14.bb b/meta/recipes-extended/lzip/lzlib_1.14.bb
new file mode 100644
index 0000000000..a6010bbf27
--- /dev/null
+++ b/meta/recipes-extended/lzip/lzlib_1.14.bb
@@ -0,0 +1,39 @@
1SUMMARY = "Data compression library providing in-memory LZMA compression and decompression functions"
2HOMEPAGE = "https://www.nongnu.org/lzip/lzlib.html"
3DESCRIPTION = "Lzlib is a data compression library providing in-memory LZMA compression and decompression functions, including integrity checking of the decompressed data. The compressed data format used by the library is the lzip format. Lzlib is written in C. "
4LICENSE = "BSD-2-Clause"
5LIC_FILES_CHKSUM = "file://COPYING;md5=04d943636aa1482e0a97d924d9f4f68f \
6 "
7
8SRC_URI = "${SAVANNAH_GNU_MIRROR}/lzip/lzlib/lzlib-${PV}.tar.gz"
9SRC_URI[sha256sum] = "5acac8714ed4f306020bae660dddce706e5f8a795863679037da9fe6bf4dcf6f"
10
11B = "${WORKDIR}/build"
12do_configure[cleandirs] = "${B}"
13
14CONFIGUREOPTS = "\
15 '--srcdir=${S}' \
16 '--prefix=${prefix}' \
17 '--exec-prefix=${exec_prefix}' \
18 '--bindir=${bindir}' \
19 '--datadir=${datadir}' \
20 '--infodir=${infodir}' \
21 '--libdir=${libdir}' \
22 '--sysconfdir=${sysconfdir}' \
23 '--enable-shared' \
24 '--disable-static' \
25 'CC=${CC}' \
26 'CPPFLAGS=${CPPFLAGS}' \
27 'CXXFLAGS=${CXXFLAGS}' \
28 'LDFLAGS=${LDFLAGS}' \
29"
30
31do_configure () {
32 ${S}/configure ${CONFIGUREOPTS}
33}
34
35do_install () {
36 oe_runmake 'DESTDIR=${D}' install
37}
38
39BBCLASSEXTEND = "native nativesdk"