2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 14:02:27 +00:00
repo/extra/pango/build
Owen Rafferty 9c96f455c1
*: use 'meson setup'
closes #165
2023-11-18 14:51:12 -06:00

24 lines
422 B
Bash
Executable File

#!/bin/sh -e
export DESTDIR="$1"
patch -p1 < no-fribidi.patch
# 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
meson setup \
-Dprefix=/usr \
-Dgtk_doc=false \
-Dxft=disabled \
-Dintrospection=disabled \
build
ninja -C build
ninja -C build install