Added libpsl
This commit is contained in:
parent
efb5be7acf
commit
375ad77edb
1 changed files with 30 additions and 0 deletions
30
pkgs/libpsl/build.sh
Normal file
30
pkgs/libpsl/build.sh
Normal file
|
@ -0,0 +1,30 @@
|
|||
pkgname=libpsl
|
||||
pkgver=0.21.1
|
||||
|
||||
fetch() {
|
||||
curl -L "https://github.com/rockdaboot/libpsl/releases/download/0.21.1/libpsl-0.21.1.tar.gz" -o $pkgname-$pkgver.tar.xz
|
||||
tar -xf $pkgname-$pkgver.tar.xz
|
||||
mkdir $pkgname-$pkgver/build
|
||||
}
|
||||
|
||||
build() {
|
||||
cd $pkgname-$pkgver
|
||||
cd build
|
||||
meson .. \
|
||||
--buildtype=release \
|
||||
--prefix=/usr \
|
||||
--libexecdir=lib
|
||||
samu
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $pkgname-$pkgver
|
||||
cd build
|
||||
DESTDIR=$pkgdir samu install
|
||||
}
|
||||
|
||||
license() {
|
||||
cd $pkgname-$pkgver
|
||||
cat LICENSE
|
||||
# cat COPYING
|
||||
}
|
Loading…
Reference in a new issue