23 lines
520 B
Plaintext
23 lines
520 B
Plaintext
# Description: Public Suffix List library.
|
|
# URL: https://github.com/rockdaboot/libpsl
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: libpsl libunistring-32 python-32
|
|
|
|
name=libpsl-32
|
|
version=0.21.0
|
|
release=1
|
|
source=(https://github.com/rockdaboot/${name%-*}/releases/download/${name%-*}-$version/${name%-*}-$version.tar.gz)
|
|
|
|
build() {
|
|
cd ${name%-*}-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{bin,include,share}
|
|
}
|