Package Details: zathura-pdf-poppler-git 0.3.2.r1.g0990d0a-1

Git Clone URL: https://aur.archlinux.org/zathura-pdf-poppler-git.git (read-only, click to copy)
Package Base: zathura-pdf-poppler-git
Description: PDF support for zathura (poppler backend)
Upstream URL: https://pwmt.org/projects/zathura-pdf-poppler
Licenses: zlib
Conflicts: zathura-pdf-poppler
Provides: zathura-pdf-poppler
Submitter: None
Maintainer: a821
Last Packager: a821
Votes: 29
Popularity: 0.000000
First Submitted: 2011-04-29 17:01 (UTC)
Last Updated: 2024-03-07 18:35 (UTC)

Required by (4)

Sources (1)

Latest Comments

will.price94 commented on 2020-01-20 11:04 (UTC)

Here's an updated PKGBUILD that builds. Current one is out of date now zathura uses meson for build.

# Maintainer: Moritz Lipp <mlq@pwmt.org>

pkgname=zathura-pdf-poppler-git
pkgrel=1
pkgver=0.2.9.11.g874e5b2
pkgdesc="PDF support for zathura by using the poppler rendering library"
arch=('i686' 'x86_64')
url="http://pwmt.org/projects/zathura-pdf-poppler"
license=('custom')
depends=('zathura-git' 'poppler-glib')
makedepends=('git' 'meson')
conflicts=('zathura-pdf-mupdf' 'zathura-pdf-mupdf-git' 'zathura-pdf-poppler')
provides=('zathura-pdf-poppler-git' 'zathura-pdf-poppler')
source=('zathura-pdf-poppler::git+https://git.pwmt.org/pwmt/zathura-pdf-poppler.git#branch=develop')
md5sums=('SKIP')
_gitname=zathura-pdf-poppler

prepare() {
mkdir -p build
}

build() {
cd build
meson --prefix=/usr --buildtype=release $srcdir/$_gitname
ninja
}

package() {
cd build
DESTDIR="$pkgdir/" ninja install
}

pkgver() {
cd "$srcdir/$_gitname"
local ver="$(git describe --long --always)"
printf "%s" "${ver//-/.}"
}

# vim:set ts=2 sw=2 et:

misc commented on 2012-03-07 16:36 (UTC)

Since this is package 'is' git, I think it's more apt if it were to check the develop branch.