libidn2: initial import

This commit is contained in:
Danny Rawlins 2018-09-09 01:16:39 +10:00
parent 7d4f34a5cf
commit 01ceeb2933
3 changed files with 63 additions and 0 deletions

36
libidn2/.footprint Normal file
View File

@ -0,0 +1,36 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/idn2
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/idn2.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libidn2.a
-rwxr-xr-x root/root usr/lib/libidn2.la
lrwxrwxrwx root/root usr/lib/libidn2.so -> libidn2.so.0.3.4
lrwxrwxrwx root/root usr/lib/libidn2.so.0 -> libidn2.so.0.3.4
-rwxr-xr-x root/root usr/lib/libidn2.so.0.3.4
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libidn2.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/idn2.1.gz
drwxr-xr-x root/root usr/share/man/man3/
-rw-r--r-- root/root usr/share/man/man3/idn2_check_version.3.gz
-rw-r--r-- root/root usr/share/man/man3/idn2_free.3.gz
-rw-r--r-- root/root usr/share/man/man3/idn2_lookup_u8.3.gz
-rw-r--r-- root/root usr/share/man/man3/idn2_lookup_ul.3.gz
-rw-r--r-- root/root usr/share/man/man3/idn2_register_u8.3.gz
-rw-r--r-- root/root usr/share/man/man3/idn2_register_ul.3.gz
-rw-r--r-- root/root usr/share/man/man3/idn2_strerror.3.gz
-rw-r--r-- root/root usr/share/man/man3/idn2_strerror_name.3.gz
-rw-r--r-- root/root usr/share/man/man3/idn2_to_ascii_4i.3.gz
-rw-r--r-- root/root usr/share/man/man3/idn2_to_ascii_4z.3.gz
-rw-r--r-- root/root usr/share/man/man3/idn2_to_ascii_8z.3.gz
-rw-r--r-- root/root usr/share/man/man3/idn2_to_ascii_lz.3.gz
-rw-r--r-- root/root usr/share/man/man3/idn2_to_unicode_44i.3.gz
-rw-r--r-- root/root usr/share/man/man3/idn2_to_unicode_4z4z.3.gz
-rw-r--r-- root/root usr/share/man/man3/idn2_to_unicode_8z4z.3.gz
-rw-r--r-- root/root usr/share/man/man3/idn2_to_unicode_8z8z.3.gz
-rw-r--r-- root/root usr/share/man/man3/idn2_to_unicode_8zlz.3.gz
-rw-r--r-- root/root usr/share/man/man3/idn2_to_unicode_lzlz.3.gz

5
libidn2/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/UuGfKzgPuyw635jfjeCyJ8+mrkodcl9qIZJow6YH7XKn5aaE5LHRdWN8tuZjUbKXDusyRaXfA4bExTwBQKAGwo=
SHA256 (Pkgfile) = 55ff8cc0f0fd7613f851292dda011e27136fc42afdd9a220a6594bd3b3907ccb
SHA256 (.footprint) = d681893097bd38c4f39e6c88371805e3287361abd312bb613b746b27fbdaff9c
SHA256 (libidn2-2.0.5.tar.lz) = 0ff7a59eeedff3865fa17151d656991f56d8835f593982d7327af5e0bf9a9668

22
libidn2/Pkgfile Normal file
View File

@ -0,0 +1,22 @@
# 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
version=2.0.5
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}
}