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