blob: 51a2e34a3a4a7e5d454d5c62f695d6259b4255cd (
plain)
1 # Description: Backends and filters for CUPS
2 # URL: https://openprinting.github.io/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: ghostscript libexif mupdf poppler qpdf xorg-font-dejavu-ttf
5
6 name=cups-filters
7 version=1.28.16
8 release=1
9 source=(https://www.openprinting.org/download/$name/$name-$version.tar.xz
10 cups-browsed)
11
12 build() {
13 cd $name-$version
14
15 ./configure \
16 --prefix=/usr \
17 --sysconfdir=/etc \
18 --runstatedir=/run \
19 --with-cups-rundir=/run/cups \
20 --without-php \
21 --disable-avahi \
22 --disable-dbus \
23 --disable-braille \
24 --without-rcdir \
25 --with-browseremoteprotocols=cups
26
27 make
28 make DESTDIR=$PKG install
29
30 install -D -m 0755 $SRC/cups-browsed $PKG/etc/rc.d/cups-browsed
31
32 rm -r $PKG/usr/share/doc
33 }
|