mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 03:30:23 -07:00
11 lines
123 B
Bash
Executable File
11 lines
123 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export DESTDIR="$1"
|
|
|
|
meson setup \
|
|
-Dprefix=/usr \
|
|
. output
|
|
|
|
ninja -C output
|
|
ninja -C output install
|