mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-14 10:40:32 -07:00
9c96f455c1
closes #165
14 lines
168 B
Bash
Executable File
14 lines
168 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export DESTDIR="$1"
|
|
|
|
meson setup \
|
|
-Dprefix=/usr \
|
|
-Dbuildtype=release \
|
|
-Dtests=false \
|
|
output
|
|
|
|
ninja -C output
|
|
ninja -C output install
|
|
|