zathura: initial commit, version 0.4.8

This commit is contained in:
Tim Biermann 2021-09-25 18:22:36 +02:00
parent f3bbc69cb0
commit 9491402d82
3 changed files with 67 additions and 0 deletions

34
zathura/.footprint Normal file
View File

@ -0,0 +1,34 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/zathura
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/zathura/
-rw-r--r-- root/root usr/include/zathura/document.h
-rw-r--r-- root/root usr/include/zathura/links.h
-rw-r--r-- root/root usr/include/zathura/macros.h
-rw-r--r-- root/root usr/include/zathura/page.h
-rw-r--r-- root/root usr/include/zathura/plugin-api.h
-rw-r--r-- root/root usr/include/zathura/types.h
-rw-r--r-- root/root usr/include/zathura/zathura-version.h
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/zathura.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/applications/
-rw-r--r-- root/root usr/share/applications/org.pwmt.zathura.desktop
drwxr-xr-x root/root usr/share/bash-completion/
drwxr-xr-x root/root usr/share/bash-completion/completions/
-rw-r--r-- root/root usr/share/bash-completion/completions/zathura
drwxr-xr-x root/root usr/share/dbus-1/
drwxr-xr-x root/root usr/share/dbus-1/interfaces/
-rw-r--r-- root/root usr/share/dbus-1/interfaces/org.pwmt.zathura.xml
drwxr-xr-x root/root usr/share/icons/
drwxr-xr-x root/root usr/share/icons/hicolor/
drwxr-xr-x root/root usr/share/icons/hicolor/scalable/
drwxr-xr-x root/root usr/share/icons/hicolor/scalable/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/scalable/apps/org.pwmt.zathura.svg
drwxr-xr-x root/root usr/share/metainfo/
-rw-r--r-- root/root usr/share/metainfo/org.pwmt.zathura.appdata.xml
drwxr-xr-x root/root usr/share/zsh/
drwxr-xr-x root/root usr/share/zsh/site-functions/
-rw-r--r-- root/root usr/share/zsh/site-functions/_zathura

5
zathura/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF39SYMDkd7UKLjVGPEaEpm+sQVIY8o3tH6pNJdjhR6uCmZ5KBaLTbtSDqdALUKHlxJVYDnfthZaKmebpA7QLHOgQ=
SHA256 (Pkgfile) = d1e1c8089a441f97b8023628d4ab2cfdf785329a3cb48198143c893ebf23baf8
SHA256 (.footprint) = d95a9171fd7454254073f824341708d2f76ea7f3332cc1c7329d8ba49bb89868
SHA256 (zathura-0.4.8.tar.xz) = b1aaa8b61d150b092ac9e312cbbf87279ecd66bd37b8c63c994e895843f520db

28
zathura/Pkgfile Normal file
View File

@ -0,0 +1,28 @@
# Description: Highly customizable and functional document viewer
# URL: https://pwmt.org/projects/zathura
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: girara
# Optional: texlive
name=zathura
version=0.4.8
release=1
source=(https://pwmt.org/projects/$name/download/$name-$version.tar.xz)
build() {
prt-get isinst texlive && PKGMK_ZATHURA+=" -D synctex=enabled" || PKGMK_ZATHURA=" -D synctex=disabled"
meson setup $name-$version build $PKGMK_ZATHURA \
--prefix=/usr \
--sysconfdir=/etc \
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true \
-D magic=enabled
meson compile -C build
DESTDIR=$PKG meson install -C build
rm -rf $PKG/usr/share/{locale,fish}
find $PKG -perm /go+w -exec chmod go-w {} \;
}