mirror of
https://codeberg.org/kiss-community/repo
synced 2025-03-10 07:19:57 -06:00
12 lines
147 B
Bash
Executable File
12 lines
147 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export DESTDIR="$1"
|
|
|
|
meson setup \
|
|
-Dprefix=/usr \
|
|
-Dbuildtype=release \
|
|
output
|
|
|
|
ninja -C output
|
|
ninja -C output install
|