diff options
Diffstat (limited to 'community/zathura/build')
-rwxr-xr-x | community/zathura/build | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/community/zathura/build b/community/zathura/build new file mode 100755 index 00000000..86589ef0 --- /dev/null +++ b/community/zathura/build @@ -0,0 +1,19 @@ +#!/bin/sh -e + +patch -p1 < remove_gettext.patch + +# Fix build errors when appstream-glib or +# desktop-file-utils are installed. +sed -i 's/appstream-util//' data/meson.build +sed -i 's/desktop-file-validate//' data/meson.build + +meson build \ + --prefix=/usr \ + --sysconfdir=/etc \ + --buildtype=release \ + -Dsynctex=disabled + +DESTDIR="$1" ninja -C build install + +install -Dm 0644 zathura.1 "$1/usr/share/man/man1/zathura.1" +install -Dm 0644 zathurarc.5 "$1/usr/share/man/man1/zathurarc.5" |