blob: 779a605f3a8522770188e86e59e2a71e2eb950fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
DESCRIPTION = "Implementation of the Stringprep, Punycode and IDNA specifications defined by the IETF Internationalized Domain Names (IDN) working group."
SECTION = "libs"
PRIORITY = "optional"
LICENSE = "LGPL"
PR = "r0"
inherit pkgconfig autotools
SRC_URI = "http://alpha.gnu.org/gnu/libidn/libidn-${PV}.tar.gz"
EXTRA_OECONF = " --disable-tld"
do_configure_prepend () {
autoreconf -f -i -s
}
do_stage () {
autotools_stage_all
}
|