blob: 3c73f52811ba9f5544aaaaaf8b40bc84bc2fd6c9 (
plain)
1 # Description: Postscript Utilities
2 # URL: https://github.com/rrthomas/psutils
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: p5-ipc-run3 paper ghostscript
5
6 name=psutils
7 version=2.08
8 release=1
9 source=(https://github.com/rrthomas/psutils/releases/download/v$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr
14 make DESTDIR=$PKG install
15 }
|