summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/p7zip/p7zip_16.02.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-extended/p7zip/p7zip_16.02.bb')
-rw-r--r--meta-oe/recipes-extended/p7zip/p7zip_16.02.bb46
1 files changed, 0 insertions, 46 deletions
diff --git a/meta-oe/recipes-extended/p7zip/p7zip_16.02.bb b/meta-oe/recipes-extended/p7zip/p7zip_16.02.bb
deleted file mode 100644
index 789819a5ec..0000000000
--- a/meta-oe/recipes-extended/p7zip/p7zip_16.02.bb
+++ /dev/null
@@ -1,46 +0,0 @@
1SUMMARY = "7-zip is a commandline utility handling 7z archives."
2HOMEPAGE = "http://www.7-zip.org/"
3LICENSE = "LGPL-2.1-or-later & unRAR"
4LIC_FILES_CHKSUM = "file://DOC/copying.txt;md5=4fbd65380cdd255951079008b364516c \
5 file://DOC/unRarLicense.txt;md5=9c87ddde469ef94aed153b0951d088de \
6 file://DOC/License.txt;md5=879598edf1f54dddb6930d7581357f8b"
7
8SRC_URI = "http://downloads.sourceforge.net/p7zip/p7zip/${PV}/p7zip_${PV}_src_all.tar.bz2 \
9 file://do_not_override_compiler_and_do_not_strip.patch \
10 file://CVE-2017-17969.patch \
11 file://0001-Fix-narrowing-errors-Wc-11-narrowing.patch \
12 file://change_numMethods_from_bool_to_unsigned.patch \
13 file://CVE-2018-5996.patch \
14 file://CVE-2016-9296.patch \
15 "
16
17SRC_URI[sha256sum] = "5eb20ac0e2944f6cb9c2d51dd6c4518941c185347d4089ea89087ffdd6e2341f"
18
19UPSTREAM_CHECK_URI = "https://tracker.debian.org/pkg/p7zip"
20UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)"
21
22S = "${WORKDIR}/${BPN}_${PV}"
23
24do_compile:append() {
25 oe_runmake 7z
26}
27FILES:${PN} += "${libdir}/* ${bindir}/7z"
28
29FILES_SOLIBSDEV = ""
30INSANE_SKIP:${PN} += "dev-so"
31
32do_install() {
33 install -d ${D}${bindir}
34 install -d ${D}${bindir}/Codecs
35 install -d ${D}${libdir}
36 install -d ${D}${libdir}/Codecs
37 install -m 0755 ${S}/bin/7za ${D}${bindir}
38 ln -s 7za ${D}${bindir}/7z
39 install -m 0755 ${S}/bin/Codecs/* ${D}${libdir}/Codecs/
40 install -m 0755 ${S}/bin/7z.so ${D}${libdir}/lib7z.so
41}
42
43RPROVIDES:${PN} += "lib7z.so()(64bit) 7z lib7z.so"
44RPROVIDES:${PN}-dev += "lib7z.so()(64bit) 7z lib7z.so"
45
46BBCLASSEXTEND = "native nativesdk"