18 lines
423 B
Plaintext
18 lines
423 B
Plaintext
|
# Description: adds PS support to zathura
|
||
|
# URL: http://pwmt.org/projects/zathura-ps
|
||
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
||
|
# Depends on: libspectre, zathura
|
||
|
|
||
|
name=zathura-ps
|
||
|
version=0.2.7
|
||
|
release=2
|
||
|
source=(http://pwmt.org/projects/$name/download/$name-$version.tar.xz)
|
||
|
|
||
|
build() {
|
||
|
cd "$name-$version"
|
||
|
|
||
|
meson build --prefix=/usr
|
||
|
DESTDIR=$PKG ninja -C build install
|
||
|
}
|
||
|
# vim: set ft=sh ts=4 et:
|