mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 03:30:23 -07:00
16 lines
259 B
Plaintext
16 lines
259 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
meson \
|
||
|
--prefix=/usr \
|
||
|
--sysconfdir=/etc \
|
||
|
--mandir=/usr/share/man \
|
||
|
-Ddebug-gui=false \
|
||
|
-Ddocumentation=false \
|
||
|
-Dtests=false \
|
||
|
-Dlibwacom=false \
|
||
|
. output
|
||
|
|
||
|
ninja -C output
|
||
|
|
||
|
DESTDIR="$1" ninja -C output install
|