diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2022-11-07 15:54:48 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-11-08 22:47:16 +0000 |
commit | 9954a1687f450927ff46a4d606fc286316764df3 (patch) | |
tree | 118c5b414393abc18438f9fc4e88671ba1e9dd16 /meta/recipes-extended/libidn/libidn2_2.3.4.bb | |
parent | 278e2dda04f043e20d0225e5697e33bb6b2b6b68 (diff) | |
download | poky-9954a1687f450927ff46a4d606fc286316764df3.tar.gz |
libidn2: upgrade 2.3.3 -> 2.3.4
(From OE-Core rev: f9a912b64713085b676b054ab3f8e826a3da4a0c)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/libidn/libidn2_2.3.4.bb')
-rw-r--r-- | meta/recipes-extended/libidn/libidn2_2.3.4.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-extended/libidn/libidn2_2.3.4.bb b/meta/recipes-extended/libidn/libidn2_2.3.4.bb new file mode 100644 index 0000000000..b48de39fa0 --- /dev/null +++ b/meta/recipes-extended/libidn/libidn2_2.3.4.bb | |||
@@ -0,0 +1,33 @@ | |||
1 | SUMMARY = "Internationalized Domain Name support library" | ||
2 | DESCRIPTION = "Implementation of the Stringprep, Punycode and IDNA specifications defined by the IETF Internationalized Domain Names (IDN) working group." | ||
3 | HOMEPAGE = "http://www.gnu.org/software/libidn/" | ||
4 | SECTION = "libs" | ||
5 | LICENSE = "(GPL-2.0-or-later | LGPL-3.0-only) & GPL-3.0-or-later & Unicode-DFS-2016" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=2d834ea7d480438ada04e5d846152395 \ | ||
7 | file://COPYING.LESSERv3;md5=e6a600fd5e1d9cbde2d983680233ad02 \ | ||
8 | file://COPYINGv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | ||
9 | file://COPYING.unicode;md5=684cf5f7e3fded3546679424528261a9 \ | ||
10 | file://src/idn2.c;endline=16;md5=0f347a5b17acf44440bf53e406f1df70 \ | ||
11 | file://lib/idn2.h.in;endline=27;md5=4d7b3771faa9c60067ed1da914508bc5 \ | ||
12 | " | ||
13 | |||
14 | SRC_URI = "${GNU_MIRROR}/libidn/${BPN}-${PV}.tar.gz" | ||
15 | SRC_URI[sha256sum] = "93caba72b4e051d1f8d4f5a076ab63c99b77faee019b72b9783b267986dbb45f" | ||
16 | |||
17 | DEPENDS = "virtual/libiconv libunistring" | ||
18 | |||
19 | inherit pkgconfig autotools gettext texinfo gtk-doc lib_package | ||
20 | |||
21 | EXTRA_OECONF += "--disable-rpath \ | ||
22 | --with-libunistring-prefix=${STAGING_EXECPREFIXDIR} \ | ||
23 | " | ||
24 | |||
25 | do_install:append() { | ||
26 | # Need to remove any duplicate whitespace too for reproducibility | ||
27 | sed -i -e 's|-L${STAGING_LIBDIR}||' -e 's/ */ /g' ${D}${libdir}/pkgconfig/libidn2.pc | ||
28 | } | ||
29 | |||
30 | LICENSE:${PN} = "(GPL-2.0-or-later | LGPL-3.0-only) & Unicode-DFS-2016" | ||
31 | LICENSE:${PN}-bin = "GPL-3.0-or-later" | ||
32 | |||
33 | BBCLASSEXTEND = "native nativesdk" | ||