blob: 758be720348381f811c772c9c05d19be7c06620d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh -e
export DESTDIR="$1"
cl-meson \
-Ddefault_library=both \
-Dtee=enabled \
-Dglib=enabled \
-Dfontconfig=enabled \
-Dfreetype=enabled \
-Dgtk_doc=false \
-Dxcb=enabled \
-Dzlib=enabled \
-Dpng=enabled \
. output
ninja -C output
ninja -C output install
|