# Maintainer: Levente Polyak # Contributor: Darshit Shah # no changes, hold for soname bumps pkgname=libpsl pkgver=0.21.2 pkgrel=1 pkgdesc='Public Suffix List library' url='https://github.com/rockdaboot/libpsl' arch=('x86_64') license=('MIT') depends=('libidn2' 'libunistring') makedepends=('libxslt' 'python' 'publicsuffix-list' 'gtk-doc') provides=('libpsl.so') source=(https://github.com/rockdaboot/libpsl/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz) sha512sums=('f1df72220bf4391d4701007100b0df66c833a2cbcb7481c9d13f0b9e0cad3b66d2d15d4b976e5bad60d2ad1540355112fa1acb07aa925c241d2d7cd20681c71d') b2sums=('b50f805bb467dc3284bc91645a37a2208098ad809d3771c74ef13c3b8f6029a07ad80a56702c7e3d1a1125d272403c85dd97b64a28465b9ff2d095eaf94b9a4d') prepare() { cd ${pkgname}-${pkgver} rm -frv list autoreconf -fiv } build() { cd ${pkgname}-${pkgver} ./configure \ --prefix=/usr \ --disable-static \ --disable-dependency-tracking \ --enable-man \ --enable-gtk-doc \ --enable-{builtin,runtime}=libidn2 \ --with-psl-file=/usr/share/publicsuffix/effective_tld_names.dat \ --with-psl-testfile=/usr/share/publicsuffix/test_psl.txt LC_CTYPE=en_US.UTF-8 make } check() { cd ${pkgname}-${pkgver} make check } package() { depends+=('libidn2.so' 'libunistring.so') cd ${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}" } # vim: ts=2 sw=2 et: