2020-01-19 15:03:09 -07:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
export DESTDIR="$1"
|
|
|
|
|
|
|
|
meson \
|
|
|
|
--prefix=/usr \
|
2021-07-06 04:30:50 -06:00
|
|
|
--libexecdir=/usr/lib \
|
2021-07-01 01:15:04 -06:00
|
|
|
-Ddefault_library=both \
|
2020-01-19 15:03:09 -07:00
|
|
|
-Denable-docs=false \
|
2021-07-08 05:16:48 -06:00
|
|
|
-Denable-wayland=true \
|
|
|
|
-Denable-x11=false \
|
2020-09-16 23:38:05 -06:00
|
|
|
-Denable-xkbregistry=false \
|
2020-01-19 15:03:09 -07:00
|
|
|
. output
|
|
|
|
|
|
|
|
ninja -C output
|
|
|
|
ninja -C output install
|