blob: d579fbdbe7cc0186d5a2bc492b6a82ea47f13fa2 (
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
|