diff options
author | Cem Keylan <cem@ckyln.com> | 2021-07-16 13:20:06 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-07-16 13:20:06 +0300 |
commit | 71ae35151229b7651f6f0ea0dcb63bf8e03318d3 (patch) | |
tree | aacf92873c5a87361b85d9177d6988e7be7449cf /community/zathura/build | |
parent | 965096f4e597580d0536c149f72487f42f6266ff (diff) | |
download | repository-71ae35151229b7651f6f0ea0dcb63bf8e03318d3.tar.gz |
zathura: bump to 0.4.8
Diffstat (limited to 'community/zathura/build')
-rwxr-xr-x | community/zathura/build | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/community/zathura/build b/community/zathura/build index 86589ef0..7d80a8fd 100755 --- a/community/zathura/build +++ b/community/zathura/build @@ -1,5 +1,7 @@ #!/bin/sh -e +export DESTDIR=$1 + patch -p1 < remove_gettext.patch # Fix build errors when appstream-glib or @@ -7,13 +9,15 @@ patch -p1 < remove_gettext.patch sed -i 's/appstream-util//' data/meson.build sed -i 's/desktop-file-validate//' data/meson.build -meson build \ +meson \ --prefix=/usr \ --sysconfdir=/etc \ --buildtype=release \ - -Dsynctex=disabled + -Dsynctex=disabled \ + . output -DESTDIR="$1" ninja -C build install +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" |