mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
64 lines
1.6 KiB
Bash
64 lines
1.6 KiB
Bash
# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
|
|
# Contributor: Darshit Shah <darnir@gmail.com>
|
|
|
|
# no changes, hold for soname bumps
|
|
|
|
pkgname=libpsl
|
|
pkgver=0.21.5
|
|
pkgrel=2
|
|
pkgdesc='Public Suffix List library'
|
|
url='https://github.com/rockdaboot/libpsl'
|
|
arch=('x86_64')
|
|
license=('MIT')
|
|
depends=(
|
|
libidn2
|
|
libunistring
|
|
)
|
|
makedepends=(
|
|
gtk-doc
|
|
libxslt
|
|
publicsuffix-list
|
|
python
|
|
)
|
|
provides=('libpsl.so')
|
|
source=(https://github.com/rockdaboot/libpsl/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
|
|
sha512sums=('c14d575cecc0f1693894dd79565b6b9220084ddfa43b908a1cefe16d147cdd5ec47796eb0c2135e2f829a951abaf39d8a371ab5c1352f57b36e610e25adf91f5'
|
|
'SKIP')
|
|
b2sums=('a0076f622b85df99f866de6707850ac216b764bdb68c6d516f4603da42dac8eae3ee4c53d68dbb6af6f779c2c7f1b9caab74c8b558209b1f6823f95c13fc3ceb'
|
|
'SKIP')
|
|
validpgpkeys=('1CB27DBC98614B2D5841646D08302DB6A2670428') # Tim Rühsen <tim.ruehsen@gmx.de>
|
|
|
|
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:
|