mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-17 04:00:14 -07:00
13 lines
189 B
Plaintext
13 lines
189 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
meson \
|
||
|
--prefix=/usr \
|
||
|
--sysconfdir=/etc \
|
||
|
--mandir=/usr/share/man \
|
||
|
-Dhas-dlvsym=false \
|
||
|
. output
|
||
|
|
||
|
ninja -C output
|
||
|
|
||
|
DESTDIR="$1" ninja -C output install
|