Merge branch 'main' of github.com:iglunix/iglunix
This commit is contained in:
commit
d00657f039
3 changed files with 34 additions and 2 deletions
32
pkgs/seatd/build.sh
Normal file
32
pkgs/seatd/build.sh
Normal 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
|
||||
}
|
|
@ -14,7 +14,8 @@ build() {
|
|||
meson .. \
|
||||
--buildtype=release \
|
||||
--prefix=/usr \
|
||||
--libexecdir=lib
|
||||
--libexecdir=lib \
|
||||
-Dlibseat=enabled
|
||||
samu
|
||||
}
|
||||
|
||||
|
|
|
@ -30,6 +30,5 @@ package() {
|
|||
|
||||
license() {
|
||||
cd $pkgname-$pkgver
|
||||
cat LICENSE
|
||||
cat COPYING
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue