wok-next view cups-filters/receipt @ rev 20834

prosody: interesting, requires lua 5.1, and not 5.3
author Erkan Yilmaz <erkan@slitaz.org>
date Sun Jun 17 19:14:11 2018 +0000 (2018-06-17)
parents 757d032c55c7
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="cups-filters"
4 VERSION="1.11.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="OpenPrinting CUPS Filters"
7 MAINTAINER="mojo@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="https://wiki.linuxfoundation.org/openprinting/start"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://www.openprinting.org/download/cups-filters/$TARBALL"
14 BUILD_DEPENDS="cups-dev zlib-dev libjpeg-turbo-dev libpng16-dev tiff-dev \
15 glib-dev lcms2-dev freetype-dev fontconfig-dev ijs-dev qpdf-dev poppler-dev \
16 dbus-dev"
17 SPLIT="cups-filters-dev"
19 compile_rules() {
20 ./configure \
21 --without-rcdir \
22 --disable-static \
23 --disable-avahi \
24 --with-gs-path=/usr/bin/gs \
25 --with-pdftops-path=/usr/bin/gs \
26 $CONFIGURE_ARGS &&
27 fix libtool &&
28 make &&
29 make install
30 }
32 genpkg_rules() {
33 case $PACKAGE in
34 cups-filters)
35 copy @std
36 DEPENDS="cups dbus fontconfig freetype glib ijs lcms2 libcups \
37 libgnutls libjpeg-turbo libpng16 poppler qpdf tiff zlib"
38 ;;
39 *-dev)
40 copy @dev
41 ;;
42 esac
43 }