blob: 71b6271facfb93f6968df6ac1e3c0f56f7928b13 (
plain)
1 # Description: Ghostscript add-on for HP inkjet/laserjet printers
2 # URL: http://hpinkjet.sourceforge.net/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: cups
5
6 name=hpcups
7 version=3.14.6
8 release=1
9 source=(http://downloads.sourceforge.net/project/hplip/hplip/$version/hplip-$version.tar.gz)
10
11 build () {
12 cd hplip-$version
13
14 ./configure --prefix=/usr \
15 --enable-hpcups-only-build \
16 --enable-hpcups-install \
17 --with-hpppddir=/usr/share/cups/model/HP \
18 --disable-{doc,network}-build
19
20 make
21 make DESTDIR=$PKG install
22
23 rm -r $PKG/usr/share/{hplip,doc} $PKG/usr/bin
24 }
|