2018-09-09 01:16:39 +10:00
|
|
|
# Description: Provides support for IETF Internationalized Domain Names (IDN).
|
|
|
|
# URL: http://www.gnu.org/software/libidn/
|
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
|
|
# Depends on: libunistring
|
|
|
|
|
|
|
|
name=libidn2
|
2020-01-09 00:45:54 +11:00
|
|
|
version=2.3.0
|
2018-09-09 01:16:39 +10:00
|
|
|
release=1
|
|
|
|
source=(https://ftp.gnu.org/gnu/libidn/$name-$version.tar.lz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--disable-nls
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
rm -r $PKG/usr/share/{gtk-doc,info}
|
|
|
|
}
|