blob: 8725d1d0af06b2672a18a990a8c3d0d16ada4990 (
plain)
1 # Description: Public Suffix List library.
2 # URL: https://github.com/rockdaboot/libpsl
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: libidn2 python
5
6 name=libpsl
7 version=0.21.0
8 release=1
9 source=(https://github.com/rockdaboot/$name/releases/download/$name-$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 ./configure --prefix=/usr
15
16 make
17 make DESTDIR=$PKG install
18 }
|