added swvkc

This commit is contained in:
Ella-0 2021-01-28 13:21:48 +00:00
parent 93055230fe
commit eef865de62
1 changed files with 29 additions and 0 deletions

29
pkgs/swvkc/build.sh Normal file
View File

@ -0,0 +1,29 @@
pkgname=swvkc
pkgver=gpu-dev-option
fetch() {
curl -L "https://github.com/Ella-0/swvkc/archive/gpu-dev-option.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
samu
}
package() {
cd $pkgname-$pkgver
cd build
DESTDIR=$pkgdir samu install
}
license() {
cd $pkgname-$pkgver
cat LICENSE
# cat COPYING
}