# Maintainer (Arch): Andreas Radke # Maintainer: Omar Vega Ramos pkgname=cups-filters pkgver=1.22.1 pkgrel=1 pkgrel+=.par2 pkgdesc="OpenPrinting CUPS Filters" pkgdesc+=", without foomatic-db-nonfree recommendation" arch=('x86_64') arch+=('i686' 'armv7h') url="https://wiki.linuxfoundation.org/openprinting/cups-filters" license=('custom') depends=('lcms2' 'poppler' 'qpdf' 'imagemagick' 'liblouis' 'ijs' 'libcups>=2.2.6-2' 'udev') depends_i686+=('poppler=0.73.0') depends_x86_64+=('poppler=0.75.0') depends_armv7h+=('poppler=0.75.0') makedepends=('ghostscript' 'ttf-dejavu' 'python' 'mupdf-tools') # ttf-dejavu for make check makedepends_i686=('pkgconf') optdepends=('ghostscript: for non-PostScript printers to print with CUPS to convert PostScript to raster images' 'foomatic-db: drivers use Ghostscript to convert PostScript to a printable form directly' 'foomatic-db-engine: drivers use Ghostscript to convert PostScript to a printable form directly' 'antiword: needed to convert MS Word documents (requires also docx2txt)') backup=(etc/cups/cups-browsed.conf) source=(https://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.xz) sha256sums=('7e684f2f99a7b2e1051668f837a8aa62660befbae3ed89b771b41fa6ea7d5f23') build() { cd $pkgname-$pkgver # Ignore const-related errors (remove once fixed upstream) CXXFLAGS+=' -fpermissive' ./configure --prefix=/usr \ --sysconfdir=/etc \ --sbindir=/usr/bin \ --localstatedir=/var \ --with-rcdir=no \ --enable-avahi \ --with-browseremoteprotocols=DNSSD,CUPS \ --enable-auto-setup-driverless \ --with-test-font-path=/usr/share/fonts/TTF/DejaVuSans.ttf make } check() { cd $pkgname-$pkgver make check } package() { cd $pkgname-$pkgver make DESTDIR="$pkgdir/" install # add upstream systemd support file install -Dm644 utils/cups-browsed.service ${pkgdir}/usr/lib/systemd/system/cups-browsed.service sed -i "s|/usr/sbin/cups-browsed|/usr/bin/cups-browsed|" ${pkgdir}/usr/lib/systemd/system/cups-browsed.service sed -i "s|cups.service|org.cups.cupsd.service|g" ${pkgdir}/usr/lib/systemd/system/cups-browsed.service # use cups group from cups pkg FS#56818 chgrp -R 209 ${pkgdir}/etc/cups # license mkdir -p "${pkgdir}"/usr/share/licenses/${pkgname} install -m644 "${srcdir}"/${pkgname}-${pkgver}/COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/ }