forked from kiss-community/repo
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
|
|
|