opt/cups-filters/Pkgfile
Juergen Daubert 6ec9201add [notify] cups-filters: update to 1.22.0
Note:
-----
latest update of libjpeg-turbo breaks the building of most dependent
ports, because they switched from the autools build system to cmake
and no longer installs the libtool file libjeg.la which other ports
used to link libjpeg.

It's sufficient to rebuild libtiff if the following error pops up:

 ...
 /bin/sed: can't read /usr/lib/libjpeg.la: No such file or directory
 libtool:   error: '/usr/lib/libjpeg.la' is not a valid libtool archive
2019-01-18 16:13:47 +01:00

31 lines
860 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: ghostscript poppler qpdf mupdf
name=cups-filters
version=1.22.0
release=1
source=(https://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
}