blob: e38f42e686f699f0d2bbcdebb61e8df6cd975f44 (
plain)
1 # Description: Filter script to convert PostScript data into the printers nativ format
2 # URL: http://openprinting.org
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: ghostscript
5
6 name=foomatic-filters
7 version=4.0.12
8 release=1
9 source=(http://www.openprinting.org/download/foomatic/$name-$version.tar.gz)
10
11 build () {
12 cd $name-$version
13 ./configure --prefix=/usr \
14 --sysconfdir=/etc \
15 --mandir=/usr/man \
16 --disable-dbus
17 make
18 make DESTDIR=$PKG install-main install-cups
19 }
|