20 lines
501 B
Plaintext
20 lines
501 B
Plaintext
# Description: Postscript Utilities
|
|
# URL: https://github.com/rrthomas/psutils
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: paper
|
|
|
|
name=psutils
|
|
version=1.93
|
|
release=1
|
|
source=(https://github.com/rrthomas/psutils/releases/download/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
local sitelib=$(perl -e 'use Config; print $Config::Config{'installsitelib'}')
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG pkgdatadir=$sitelib install
|
|
}
|