ports/contrib (3.6): zathura: initial commit, version 0.4.8
commit 9491402d82ef535067a88216482fd6b95af45503 Author: Tim Biermann <tbier@posteo.de> Date: Sat Sep 25 18:22:36 2021 +0200 zathura: initial commit, version 0.4.8 diff --git a/zathura/.footprint b/zathura/.footprint new file mode 100644 index 000000000..39d266f37 --- /dev/null +++ b/zathura/.footprint @@ -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 diff --git a/zathura/.signature b/zathura/.signature new file mode 100644 index 000000000..1f5d9de66 --- /dev/null +++ b/zathura/.signature @@ -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 diff --git a/zathura/Pkgfile b/zathura/Pkgfile new file mode 100644 index 000000000..9d63651f1 --- /dev/null +++ b/zathura/Pkgfile @@ -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 {} \; +}
participants (1)
-
crux@crux.nu