25 lines
668 B
Plaintext
25 lines
668 B
Plaintext
# Description: Ghostscript add-on for HP inkjet/laserjet printers
|
|
# URL: http://hpinkjet.sourceforge.net/
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: cups
|
|
|
|
name=hpcups
|
|
version=3.14.6
|
|
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-{doc,network}-build
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/{hplip,doc} $PKG/usr/bin
|
|
}
|