blob: 4706c829d9b5eb62a6d543d10b8cad148c5112cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh -e
export DESTDIR="$1"
patch -p1 < remove_gettext.patch
# 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
clman zathura.1 zathurarc.5
|