lots of updates

This commit is contained in:
Ella-0 2021-01-31 11:09:14 +00:00
parent 872362f202
commit c89aa236bd
45 changed files with 5388 additions and 74 deletions

30
templates/meson.build.sh Normal file
View file

@ -0,0 +1,30 @@
pkgname=
pkgver=
fetch() {
curl "" -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
}