diff options
author | davidovski <david@davidovski.xyz> | 2022-01-09 22:00:43 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-09 22:00:43 +0000 |
commit | 0757b802797ed8231ebb21ac5304a38ca93820a9 (patch) | |
tree | ee61b9eb478d0a8dc44812e60643c84e06fa0f53 /repo/core/libpsl.xibuild | |
parent | 098df1aa24a15dd0f83e2aac0539dd5a836d4845 (diff) |
changed libpslto use tarball
Diffstat (limited to 'repo/core/libpsl.xibuild')
-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 } |