blob: 78ac8503679fad3da09392983e5c968fdf3a8809 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/bash
DEPS=(libidn)
PKG_VER=0.21.1
SOURCE=https://github.com/rockdaboot/libpsl/releases/download/$PKG_VER/libpsl-$PKG_VER.tar.gz
DESC="C library to handle the Public Suffix List"
patch () {
sed -i 's/env python/&3/' src/psl-make-dafsa
}
build () {
./configure --prefix=/usr --disable-static &&
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|