diff options
Diffstat (limited to 'community/zathura/build')
-rwxr-xr-x | community/zathura/build | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/community/zathura/build b/community/zathura/build new file mode 100755 index 00000000..8688a263 --- /dev/null +++ b/community/zathura/build @@ -0,0 +1,21 @@ +#!/bin/sh -e + +export DESTDIR="$1" + +# Disable gettext requirement. +clsed '/i18n/,/^)$/d' data/meson.build + +# Fix build errors when appstream-glib or +# desktop-file-utils are installed. +clsed 's/appstream-util//' data/meson.build +clsed 's/desktop-file-validate//' data/meson.build + +cl-meson \ + -Dsynctex=disabled \ + . output + +ninja -C output +ninja -C output install + +# TODO update manual pages +clman zathura.1 zathurarc.5 |