24 lines
668 B
Plaintext
24 lines
668 B
Plaintext
# Description: Ghostscript add-on for HP inkjet/laserjet printers
|
|
# URL: http://hpinkjet.sourceforge.net/
|
|
# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
|
|
# Depends on: ghostscript
|
|
|
|
name=hpijs
|
|
version=2.8.10
|
|
release=1
|
|
source=(http://dl.sourceforge.net/sourceforge/hplip/hplip-$version.tar.gz)
|
|
|
|
build () {
|
|
cd hplip-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--with-hpppddir=/usr/share/cups/model/HP \
|
|
--enable-hpijs-only-build \
|
|
--disable-foomatic-xml-install \
|
|
--enable-foomatic-ppd-install
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/{hplip,doc}
|
|
}
|