diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2016-01-11 13:58:44 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-15 11:54:50 +0000 |
commit | eaf88d7a5deb6db2748eaf4c8309db0578edbeaf (patch) | |
tree | 0fa26f906a306655d61526391de518766d5ee64d /meta/recipes-extended/xz/xz_5.2.2.bb | |
parent | 8516ff72799045d16f3f5cbd1ec8c23bf53ce0d5 (diff) | |
download | poky-eaf88d7a5deb6db2748eaf4c8309db0578edbeaf.tar.gz |
xz: upgrade to 5.2.2
(From OE-Core rev: e4c20555665d230ef8671cc85d13da6df4c8ebee)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/xz/xz_5.2.2.bb')
-rw-r--r-- | meta/recipes-extended/xz/xz_5.2.2.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta/recipes-extended/xz/xz_5.2.2.bb b/meta/recipes-extended/xz/xz_5.2.2.bb new file mode 100644 index 0000000000..d118f3a744 --- /dev/null +++ b/meta/recipes-extended/xz/xz_5.2.2.bb | |||
@@ -0,0 +1,36 @@ | |||
1 | SUMMARY = "Utilities for managing LZMA compressed files" | ||
2 | HOMEPAGE = "http://tukaani.org/xz/" | ||
3 | SECTION = "base" | ||
4 | |||
5 | # The source includes bits of PD, GPLv2, GPLv3, LGPLv2.1+, but the only file | ||
6 | # which is GPLv3 is an m4 macro which isn't shipped in any of our packages, | ||
7 | # and the LGPL bits are under lib/, which appears to be used for libgnu, which | ||
8 | # appears to be used for DOS builds. So we're left with GPLv2+ and PD. | ||
9 | LICENSE = "GPLv2+ & GPL-3.0-with-autoconf-exception & LGPLv2.1+ & PD" | ||
10 | LICENSE_${PN} = "GPLv2+" | ||
11 | LICENSE_${PN}-dev = "GPLv2+" | ||
12 | LICENSE_${PN}-staticdev = "GPLv2+" | ||
13 | LICENSE_${PN}-doc = "GPLv2+" | ||
14 | LICENSE_${PN}-dbg = "GPLv2+" | ||
15 | LICENSE_${PN}-locale = "GPLv2+" | ||
16 | LICENSE_liblzma = "PD" | ||
17 | |||
18 | LIC_FILES_CHKSUM = "file://COPYING;md5=c475b6c7dca236740ace4bba553e8e1c \ | ||
19 | file://COPYING.GPLv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | ||
20 | file://COPYING.GPLv3;md5=d32239bcb673463ab874e80d47fae504 \ | ||
21 | file://COPYING.LGPLv2.1;md5=4fbd65380cdd255951079008b364516c \ | ||
22 | file://lib/getopt.c;endline=23;md5=2069b0ee710572c03bb3114e4532cd84 " | ||
23 | |||
24 | SRC_URI = "http://tukaani.org/xz/xz-${PV}.tar.gz" | ||
25 | SRC_URI[md5sum] = "7cf6a8544a7dae8e8106fdf7addfa28c" | ||
26 | SRC_URI[sha256sum] = "73df4d5d34f0468bd57d09f2d8af363e95ed6cc3a4a86129d2f2c366259902a2" | ||
27 | |||
28 | inherit autotools gettext | ||
29 | |||
30 | PACKAGES =+ "liblzma" | ||
31 | |||
32 | FILES_liblzma = "${libdir}/liblzma*${SOLIBS}" | ||
33 | |||
34 | BBCLASSEXTEND = "native nativesdk" | ||
35 | |||
36 | export CONFIG_SHELL="/bin/sh" | ||