24 lines
695 B
Plaintext
24 lines
695 B
Plaintext
# Description: Ghostscript add-on for HP inkjet/laserjet printers
|
|
# URL: http://hpinkjet.sourceforge.net/
|
|
# Maintainer: Jürgen Daubert, juergen dot daubert at t-online dot de
|
|
# Depends on: ghostscript, foomatic-filters
|
|
|
|
name=hpijs
|
|
version=2.7.7
|
|
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},lib}
|
|
}
|