forked from kiss-community/repo
9c96f455c1
closes #165
14 lines
188 B
Bash
Executable File
14 lines
188 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export DESTDIR="$1"
|
|
|
|
meson setup \
|
|
-Dprefix=/usr \
|
|
-Dbuildtype=release \
|
|
-Djpeg=enabled \
|
|
-Dpng=enabled \
|
|
output
|
|
|
|
ninja -C output
|
|
ninja -C output install
|