2020-01-20 13:37:57 -07:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2020-09-13 10:52:51 -06:00
|
|
|
export DESTDIR="$1"
|
2020-01-20 13:37:57 -07:00
|
|
|
|
2020-09-13 10:52:51 -06:00
|
|
|
meson \
|
|
|
|
--prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--mandir=/usr/share/man \
|
2021-07-08 00:19:18 -06:00
|
|
|
-Dwith_wayland=yes \
|
|
|
|
-Dwith_x11=no \
|
2021-07-08 09:10:47 -06:00
|
|
|
-Dwith_glx=no \
|
2020-09-13 10:52:51 -06:00
|
|
|
-Ddocs=false \
|
|
|
|
-Dintrospection=false \
|
|
|
|
. output
|
|
|
|
|
|
|
|
ninja -C output
|
|
|
|
ninja -C output install
|