25fe21906d
This reverts commit d4d514a84cacb29b900e935bef4a0b628b3c1f42.
25 lines
681 B
Plaintext
25 lines
681 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: cups
|
|
|
|
name=hpijs
|
|
version=3.10.9
|
|
release=1
|
|
source=(http://downloads.sourceforge.net/project/hplip/hplip/$version/hplip-$version.tar.gz)
|
|
|
|
build () {
|
|
cd hplip-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--enable-hpcups-only-build \
|
|
--enable-hpcups-install \
|
|
--with-hpppddir=/usr/share/cups/model/HP \
|
|
--disable-network-build
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/{hplip,doc} $PKG/usr/bin
|
|
}
|