blob: 2ef4d9046b5f2812359704447624ca370a0d8322 (
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.20.2
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 }
|