blob: 82ae40b577377d8e120cdecb90fc6357828fdad8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
DEPS=(libidn)
SOURCE=https://github.com/rockdaboot/libpsl
DESC="C library to handle the Public Suffix List"
build () {
./autogen.sh
./configure prefix="/usr"
make
make DESTDIR=$PKG_DEST install
}
|