diff options
-rw-r--r-- | conf/checksums.ini | 4 | ||||
-rw-r--r-- | recipes/libidn/libidn_1.15.bb | 19 |
2 files changed, 23 insertions, 0 deletions
diff --git a/conf/checksums.ini b/conf/checksums.ini index c72dcde007..d08af84c7f 100644 --- a/conf/checksums.ini +++ b/conf/checksums.ini @@ -13682,6 +13682,10 @@ sha256=63da4f6e7997278f8a3fef4c6a372d342f705051d1eeb6a46a86b03610e26151 md5=440835808c577073db7d571357223dce sha256=4f707c189259d7b3dda908d78a995366d388fe051aa3554b82cb324426997a23 +[ftp://ftp.gnu.org/gnu/libidn/libidn-1.15.tar.gz] +md5=482a25b7b223e52f967fafd284a1a992 +sha256=db75022eff366bd5646ab1e6d7bcd1c2048473a7dbdf0cd0421de92c88bbdc18 + [http://www.cpan.org/authors/id/G/GU/GUIDO/libintl-perl-1.16.tar.gz] md5=7dfcd9ac3a4ff41038a2c67a733d42b9 sha256=1a64895c9a6cdbb5cdfff81f1520541fee28e85fb940d9b0484de656d69ae8f5 diff --git a/recipes/libidn/libidn_1.15.bb b/recipes/libidn/libidn_1.15.bb new file mode 100644 index 0000000000..0a68a796c7 --- /dev/null +++ b/recipes/libidn/libidn_1.15.bb @@ -0,0 +1,19 @@ +LICENSE = "LGPL" +DESCRIPTION = "Implementation of the Stringprep, Punycode and IDNA specifications defined by the IETF Internationalized Domain Names (IDN) working group." +SECTION = "libs" +PRIORITY = "optional" +PR = "r0" + +inherit pkgconfig autotools + +SRC_URI = "${GNU_MIRROR}/${PN}/${P}.tar.gz" + +EXTRA_OECONF = " --disable-tld" + +do_configure_prepend () { + autoreconf -f -i -s +} + +do_stage () { + autotools_stage_all +} |