17 lines
278 B
Plaintext
17 lines
278 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
export DESTDIR="$1"
|
||
|
|
||
|
meson \
|
||
|
--prefix=/usr \
|
||
|
--libexecdir=/usr/lib \
|
||
|
-Dbuildtype=release \
|
||
|
-Ddbghelp=disabled \
|
||
|
-Dintrospection=disabled \
|
||
|
-Dexamples=disabled \
|
||
|
-Dgtk_doc=disabled \
|
||
|
. output
|
||
|
|
||
|
ninja -C output
|
||
|
ninja -C output install
|