blob: 601a76f58fd24ba011f9906b7e0c04f16f21abcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/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
meson \
--prefix=/usr \
--sysconfdir=/etc \
--buildtype=release \
-Dsynctex=disabled \
. output
ninja -C output
ninja -C output install
clman zathura.1 zathurarc.5
|