31 lines
864 B
Plaintext
31 lines
864 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 ghostscript poppler qpdf mupdf
|
|
|
|
name=cups-filters
|
|
version=1.13.3
|
|
release=1
|
|
source=(http://www.openprinting.org/download/$name/$name-$version.tar.xz
|
|
cups-browsed)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--without-php \
|
|
--disable-avahi \
|
|
--disable-dbus \
|
|
--disable-braille \
|
|
--without-rcdir \
|
|
--with-browseremoteprotocols=cups
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
install -D -m 0755 $SRC/cups-browsed $PKG/etc/rc.d/cups-browsed
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
}
|