28 lines
731 B
Plaintext
28 lines
731 B
Plaintext
# Description: Backends and filters for CUPS
|
|
# URL: http://www.linuxfoundation.org/collaborate/workgroups/openprinting/pdfasstandardprintjobformat
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: cups poppler qpdf
|
|
|
|
name=cups-filters
|
|
version=1.0.29
|
|
release=2
|
|
source=(http://www.openprinting.org/download/$name/$name-$version.tar.xz
|
|
$name-poppler_0.22_buildfix.patch)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
|
|
patch -p0 -i $SRC/$name-poppler_0.22_buildfix.patch
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/man \
|
|
--without-php \
|
|
--disable-avahi
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
}
|