Package Details: zathura-ps-git 0.2.7.r2.g0d28473-2

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

Required by (1)

Sources (1)

Latest Comments

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

Here's an updated PKGBUILD that builds now that zathura has switched to meson

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

pkgname=zathura-ps-git
pkgrel=1
pkgver=0.2.6.7.g8796664
pkgdesc="PostScript support for zathura"
arch=('i686' 'x86_64')
url="http://pwmt.org/projects/zathura-ps"
license=('custom')
depends=('zathura-git' 'libspectre')
makedepends=('git' 'meson')
conflicts=('zathura-ps')
provides=('zathura-ps')
source=('zathura-ps::git+https://git.pwmt.org/pwmt/zathura-ps.git#branch=develop')
md5sums=('SKIP')
_gitname=zathura-ps

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:

12qu commented on 2014-07-28 12:10 (UTC)

There's an erroneous comma after 'zathura-git' in the depends array of this PKGBUILD.