added seatd

This commit is contained in:
Ella-0 2021-06-20 11:13:21 +00:00
parent c2488b2c57
commit f045e3dc5c
1 changed files with 32 additions and 0 deletions

32
pkgs/seatd/build.sh Normal file
View File

@ -0,0 +1,32 @@
pkgname=seatd
pkgver=0.5.0
fetch() {
curl "https://git.sr.ht/~kennylevinsen/seatd/archive/$pkgver.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 \
-Dexamples=disabled \
-Dc_args=-Wno-sign-compare
samu
}
package() {
cd $pkgname-$pkgver
cd build
DESTDIR=$pkgdir samu install
}
license() {
cd $pkgname-$pkgver
cat LICENSE
# cat COPYING
}