added wlanthy

This commit is contained in:
Ella-0 2021-06-27 13:29:50 +00:00
parent 7ce3e44f46
commit cc3be42a8c
1 changed files with 30 additions and 0 deletions

30
pkgs/wlanthy/build.sh Normal file
View File

@ -0,0 +1,30 @@
pkgname=wlanthy
pkgver=main
fetch() {
curl -L "https://github.com/st3r4g/wlanthy/archive/refs/heads/main.tar.gz" -o $pkgname-$pkgver.tar.gz
tar -xf $pkgname-$pkgver.tar.gz
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
}