41 lines
1.7 KiB
BlitzBasic
41 lines
1.7 KiB
BlitzBasic
SUMMARY = "Internationalized Domain Name support library"
|
|
DESCRIPTION = "Implementation of the Stringprep, Punycode and IDNA specifications defined by the IETF Internationalized Domain Names (IDN) working group."
|
|
HOMEPAGE = "http://www.gnu.org/software/libidn/"
|
|
SECTION = "libs"
|
|
LICENSE = "(LGPL-2.1-or-later | LGPL-3.0-only) & GPL-3.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=df4be47940a91ee69556f5f71eed4aec \
|
|
file://COPYING.LESSERv2;md5=4fbd65380cdd255951079008b364516c \
|
|
file://COPYING.LESSERv3;md5=e6a600fd5e1d9cbde2d983680233ad02 \
|
|
file://COPYINGv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
|
|
file://COPYINGv3;md5=d32239bcb673463ab874e80d47fae504 \
|
|
file://lib/idna.h;endline=21;md5=c381d797e2d7fbdace7c147b1285d076 \
|
|
file://src/idn.c;endline=20;md5=7d88aa87b0494d690bdf7748fe08d536"
|
|
DEPENDS = "virtual/libiconv autoconf-archive"
|
|
|
|
inherit pkgconfig autotools gettext texinfo gtk-doc
|
|
|
|
SRC_URI = "${GNU_MIRROR}/libidn/${BPN}-${PV}.tar.gz \
|
|
file://dont-depend-on-help2man.patch \
|
|
file://0001-idn-format-security-warnings.patch \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "813c7b268d1051ca02c3610986126f38"
|
|
SRC_URI[sha256sum] = "14b67108344d81ba844631640df77c9071d9fb0659b080326ff5424e86b14038"
|
|
|
|
# command tool is under GPLv3+, while libidn itself is under LGPLv2.1+ or LGPLv3
|
|
# so package command into a separate package
|
|
PACKAGES =+ "idn"
|
|
FILES:idn = "${bindir}/*"
|
|
|
|
LICENSE:${PN} = "LGPL-2.1-or-later | LGPL-3.0-only"
|
|
LICENSE:idn = "GPL-3.0-or-later"
|
|
|
|
EXTRA_OECONF = "--disable-csharp"
|
|
|
|
do_install:append() {
|
|
rm -rf ${D}${datadir}/emacs
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|