diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2020-07-24 19:02:32 +1000 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2020-07-24 20:07:41 +1000 |
commit | 28146e225365208c27bcf1cd25e2d90016edbfe4 (patch) | |
tree | a7af22753d955edc8c2f6df6f6ab2f94e3782127 /libidn2-32 | |
parent | 05dfe71364690752206587452b4169b97f76c3ee (diff) | |
download | compat-32-28146e225365208c27bcf1cd25e2d90016edbfe4.tar.gz compat-32-28146e225365208c27bcf1cd25e2d90016edbfe4.tar.xz |
libidn2-32: initial import
Diffstat (limited to 'libidn2-32')
-rw-r--r-- | libidn2-32/.32bit | 0 | ||||
-rw-r--r-- | libidn2-32/.footprint | 9 | ||||
-rw-r--r-- | libidn2-32/.signature | 5 | ||||
-rw-r--r-- | libidn2-32/Pkgfile | 28 |
4 files changed, 42 insertions, 0 deletions
diff --git a/libidn2-32/.32bit b/libidn2-32/.32bit new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/libidn2-32/.32bit diff --git a/libidn2-32/.footprint b/libidn2-32/.footprint new file mode 100644 index 00000000..bfd24da2 --- /dev/null +++ b/libidn2-32/.footprint @@ -0,0 +1,9 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/lib32/ +-rw-r--r-- root/root usr/lib32/libidn2.a +-rwxr-xr-x root/root usr/lib32/libidn2.la +lrwxrwxrwx root/root usr/lib32/libidn2.so -> libidn2.so.0.3.7 +lrwxrwxrwx root/root usr/lib32/libidn2.so.0 -> libidn2.so.0.3.7 +-rwxr-xr-x root/root usr/lib32/libidn2.so.0.3.7 +drwxr-xr-x root/root usr/lib32/pkgconfig/ +-rw-r--r-- root/root usr/lib32/pkgconfig/libidn2.pc diff --git a/libidn2-32/.signature b/libidn2-32/.signature new file mode 100644 index 00000000..600302ea --- /dev/null +++ b/libidn2-32/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/compat-32.pub +RWSwxGo/zH7eXTSivUwwIjhbilBIZFlAn9Xb96Muss9p6oDvIOSb2RqGCeVcQqgQIB2/O3+LClMj2VObFI0otavXMnQMiJ9W3wk= +SHA256 (Pkgfile) = c65ed73e9fbee2933bbf708807808b2ca25e1d33cb14e92fdc687f81d29dd573 +SHA256 (.footprint) = dbf5b385f2313124eabf7b7d71d52dca043bd1e97b4d0e71c51aad55315535fd +SHA256 (libidn2-2.3.0.tar.lz) = 6b222435016e2d9fce34af0b21057ebc85704c27e41a781466d9287f0627dc93 diff --git a/libidn2-32/Pkgfile b/libidn2-32/Pkgfile new file mode 100644 index 00000000..ec25c53b --- /dev/null +++ b/libidn2-32/Pkgfile @@ -0,0 +1,28 @@ +# Description: Provides support for IETF Internationalized Domain Names (IDN). +# URL: http://www.gnu.org/software/libidn/ +# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu +# Depends on: libidn2 + +name=libidn2-32 +version=2.3.0 +release=1 +source=(https://ftp.gnu.org/gnu/libidn/${name%-*}-$version.tar.lz) + +build() { + cd ${name%-*}-$version + + ./configure \ + --prefix=/usr \ + --libdir=/usr/lib32 \ + --disable-nls + + make + make DESTDIR=$PKG install + + rm -r \ + $PKG/usr/{bin,include,share/man} \ + $PKG/usr/share/{gtk-doc,info} + + # Remove empty directories + find $PKG -depth -empty -exec rm -r {} \; +} |