18 lines
481 B
Plaintext
18 lines
481 B
Plaintext
|
# Description: Filter script to convert PostScript data into the printers nativ format
|
|||
|
# URL: http://linuxprinting.org
|
|||
|
# Maintainer: J<>rgen Daubert, juergen dot daubert at t-online dot de
|
|||
|
# Depends on: ghostscript
|
|||
|
|
|||
|
name=foomatic-filters
|
|||
|
version=3.0.2
|
|||
|
release=1
|
|||
|
source=(http://www.linuxprinting.org/download/foomatic/$name-$version.tar.gz)
|
|||
|
|
|||
|
build () {
|
|||
|
cd $name-$version
|
|||
|
./configure --prefix=/usr
|
|||
|
make
|
|||
|
make DESTDIR=$PKG install
|
|||
|
rm -r $PKG/usr/lib/ppr
|
|||
|
}
|