repo/extra/pango/build

24 lines
422 B
Plaintext
Raw Normal View History

2019-08-04 23:12:55 +00:00
#!/bin/sh -e
2023-03-02 14:40:00 +00:00
export DESTDIR="$1"
2021-07-07 16:03:50 +00:00
patch -p1 < no-fribidi.patch
2021-07-27 15:07:57 +00: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 16:50:34 +00:00
2023-11-18 20:51:12 +00:00
meson setup \
-Dprefix=/usr \
2019-08-04 23:12:55 +00:00
-Dgtk_doc=false \
2021-07-08 07:25:01 +00:00
-Dxft=disabled \
2020-11-09 18:20:51 +00:00
-Dintrospection=disabled \
2023-11-18 20:51:12 +00:00
build
2019-08-04 23:12:55 +00:00
ninja -C build
2019-10-07 21:08:43 +00:00
ninja -C build install