diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2017-05-05 17:09:07 +0300 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-05-23 15:49:34 +0200 |
commit | b629d9dbd3c22fca92ebd2205bb744562e8ca7ae (patch) | |
tree | 323ea1131e49902b5828b316f920bc44400a851b | |
parent | 5acb6e9aeae6a6ee35c2f889c4e9fefedb931f1f (diff) | |
download | meta-openembedded-b629d9dbd3c22fca92ebd2205bb744562e8ca7ae.tar.gz |
lzip: remove recipe
It has been moved to oe-core.
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/lzip/lzip_1.16.bb | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/meta-oe/recipes-support/lzip/lzip_1.16.bb b/meta-oe/recipes-support/lzip/lzip_1.16.bb deleted file mode 100644 index a5d99625a7..0000000000 --- a/meta-oe/recipes-support/lzip/lzip_1.16.bb +++ /dev/null | |||
@@ -1,41 +0,0 @@ | |||
1 | SUMMARY = "Lossless data compressor based on the LZMA algorithm" | ||
2 | HOMEPAGE = "http://lzip.nongnu.org/lzip.html" | ||
3 | SECTION = "console/utils" | ||
4 | LICENSE = "GPLv2+" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=76d6e300ffd8fb9d18bd9b136a9bba13 \ | ||
6 | file://decoder.cc;endline=16;md5=0809128ac32163252846e09a70c8b80b" | ||
7 | |||
8 | SRC_URI = "${SAVANNAH_GNU_MIRROR}/lzip/lzip-${PV}.tar.gz" | ||
9 | |||
10 | SRC_URI[md5sum] = "716a9876dc595ec52d4f3bda81e42471" | ||
11 | SRC_URI[sha256sum] = "128cc25baf92c8b69700831e6f984d954016318cc78edca87870d0c033112751" | ||
12 | |||
13 | CONFIGUREOPTS = "\ | ||
14 | '--srcdir=${S}' \ | ||
15 | '--prefix=${prefix}' \ | ||
16 | '--exec-prefix=${exec_prefix}' \ | ||
17 | '--bindir=${bindir}' \ | ||
18 | '--datadir=${datadir}' \ | ||
19 | '--infodir=${infodir}' \ | ||
20 | '--sysconfdir=${sysconfdir}' \ | ||
21 | 'CXX=${CXX}' \ | ||
22 | 'CPPFLAGS=${CPPFLAGS}' \ | ||
23 | 'CXXFLAGS=${CXXFLAGS}' \ | ||
24 | 'LDFLAGS=${LDFLAGS}' \ | ||
25 | " | ||
26 | EXTRA_OEMAKE = "" | ||
27 | |||
28 | B = "${S}/obj" | ||
29 | do_configure () { | ||
30 | ${S}/configure ${CONFIGUREOPTS} | ||
31 | } | ||
32 | |||
33 | do_install () { | ||
34 | oe_runmake 'DESTDIR=${D}' install | ||
35 | # Info dir listing isn't interesting at this point so remove it if it exists. | ||
36 | if [ -e "${D}${infodir}/dir" ]; then | ||
37 | rm -f ${D}${infodir}/dir | ||
38 | fi | ||
39 | } | ||
40 | |||
41 | BBCLASSEXTEND = "native nativesdk" | ||