2019-08-04 17:12:55 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2023-03-02 07:40:00 -07:00
|
|
|
export DESTDIR="$1"
|
|
|
|
|
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
|
|
|
|
2023-11-18 13:51:12 -07:00
|
|
|
meson setup \
|
|
|
|
-Dprefix=/usr \
|
2019-08-04 17:12:55 -06:00
|
|
|
-Dgtk_doc=false \
|
2021-07-08 01:25:01 -06:00
|
|
|
-Dxft=disabled \
|
2020-11-09 11:20:51 -07:00
|
|
|
-Dintrospection=disabled \
|
2023-11-18 13:51:12 -07:00
|
|
|
build
|
2019-08-04 17:12:55 -06:00
|
|
|
|
|
|
|
ninja -C build
|
2019-10-07 15:08:43 -06:00
|
|
|
ninja -C build install
|