blob: 7d80a8fd1af550eb3b7d88998d9e693588ac72ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh -e
export DESTDIR=$1
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 \
--prefix=/usr \
--sysconfdir=/etc \
--buildtype=release \
-Dsynctex=disabled \
. output
ninja -C output
ninja -C output 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"
|