diff options
Diffstat (limited to 'repo')
-rw-r--r-- | repo/core/libpsl.xibuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/repo/core/libpsl.xibuild b/repo/core/libpsl.xibuild index 82ae40b..9b40f2a 100644 --- a/repo/core/libpsl.xibuild +++ b/repo/core/libpsl.xibuild @@ -2,12 +2,12 @@ DEPS=(libidn) -SOURCE=https://github.com/rockdaboot/libpsl +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 () { - ./autogen.sh - ./configure prefix="/usr" - make + sed -i 's/env python/&3/' src/psl-make-dafsa && + ./configure --prefix=/usr --disable-static && + make make DESTDIR=$PKG_DEST install } |