forked from kiss-community/repo
9c96f455c1
closes #165
24 lines
422 B
Bash
Executable File
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
|