2019-08-04 17:12:55 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2021-07-07 10:03:50 -06:00
|
|
|
patch -p1 < no-fribidi.patch
|
|
|
|
|
2021-07-27 09:07:57 -06:00
|
|
|
# Disable download of missing (optional) dependencies
|
|
|
|
# during the build. This cannot be turned off otherwise.
|
|
|
|
rm -rf subprojects
|
|
|
|
|
|
|
|
: > tests/meson.build
|
|
|
|
: > examples/meson.build
|
|
|
|
: > docs/meson.build
|
2020-02-14 09:50:34 -07:00
|
|
|
|
2019-08-04 17:12:55 -06:00
|
|
|
meson \
|
|
|
|
--prefix=/usr \
|
|
|
|
-Dgtk_doc=false \
|
2021-07-08 01:25:01 -06:00
|
|
|
-Dxft=disabled \
|
2020-11-09 11:20:51 -07:00
|
|
|
-Dintrospection=disabled \
|
2019-08-04 17:12:55 -06:00
|
|
|
. build
|
|
|
|
|
|
|
|
ninja -C build
|
2019-10-07 15:08:43 -06:00
|
|
|
ninja -C build install
|