diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2018-09-09 01:15:36 +1000 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2018-09-09 01:15:36 +1000 |
commit | 7d4f34a5cf34322efd81b1c21f65295e74811655 (patch) | |
tree | 1eeb97ebe32396d2c9d122bd4dcedec41d4bff9b /libpsl/Pkgfile | |
parent | 89be5e34b2e0fcced48a11033cc65da27b91bd65 (diff) | |
download | opt-7d4f34a5cf34322efd81b1c21f65295e74811655.tar.gz opt-7d4f34a5cf34322efd81b1c21f65295e74811655.tar.xz |
libpsl: initial import
Diffstat (limited to 'libpsl/Pkgfile')
-rw-r--r-- | libpsl/Pkgfile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libpsl/Pkgfile b/libpsl/Pkgfile new file mode 100644 index 000000000..2ef4d9046 --- /dev/null +++ b/libpsl/Pkgfile @@ -0,0 +1,18 @@ +# Description: Public Suffix List library. +# URL: https://github.com/rockdaboot/libpsl +# Maintainer: Danny Rawlins, crux at romster dot me +# Depends on: libidn2 python + +name=libpsl +version=0.20.2 +release=1 +source=(https://github.com/rockdaboot/$name/releases/download/$name-$version/$name-$version.tar.gz) + +build() { + cd $name-$version + + ./configure --prefix=/usr + + make + make DESTDIR=$PKG install +} |