36 lines
928 B
Plaintext
36 lines
928 B
Plaintext
|
# Template file for 'psutils'
|
||
|
pkgname="psutils"
|
||
|
version="p17"
|
||
|
revision=1
|
||
|
build_style=gnu-makefile
|
||
|
short_desc="Set of utilities to manipulate PostScript files"
|
||
|
maintainer="Carlo Dormeletti <carlo.dormeletti@email.it>"
|
||
|
license="AJCD-License"
|
||
|
hostmakedepends="perl "
|
||
|
makedepends="ghostscript"
|
||
|
depends="ghostscript"
|
||
|
homepage="http://knackered.org/angus/psutils/"
|
||
|
wrksrc="/psutils"
|
||
|
distfiles="ftp://ftp.knackered.org/pub/psutils/${pkgname}-${version}.tar.gz"
|
||
|
checksum="3853eb79584ba8fbe27a815425b65a9f7f15b258e0d43a05a856bdb75d588ae4"
|
||
|
patch_args="-Np1"
|
||
|
|
||
|
pre_configure() {
|
||
|
# install in /usr instead of /usr/local
|
||
|
sed 's@/usr/local@/usr@g' Makefile.unix > Makefile
|
||
|
}
|
||
|
|
||
|
do_build() {
|
||
|
make
|
||
|
}
|
||
|
|
||
|
do_install() {
|
||
|
make DESTDIR=${DESTDIR} install
|
||
|
|
||
|
vinstall LICENSE 644 usr/share/licenses/${pkgname}
|
||
|
|
||
|
vinstall LICENSE 644 usr/share/${pkgname}
|
||
|
vinstall README 644 usr/share/${pkgname}
|
||
|
vinstall README.voidlinux 644 usr/share/${pkgname}
|
||
|
|
||
|
}
|