14 lines
237 B
Bash
14 lines
237 B
Bash
|
#!/bin/sh -e
|
||
|
|
||
|
meson \
|
||
|
-Degl=yes \
|
||
|
-Dglx=no \
|
||
|
-Dx11=false \
|
||
|
-Dtests=false \
|
||
|
-Dhas-dlvsym=false \
|
||
|
-Ddefault_library=both \
|
||
|
--mandir=/usr/share/man \
|
||
|
--sysconfdir=/etc \
|
||
|
--prefix="$PREFIX" \
|
||
|
../build
|