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

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents 835b3b8ce6ac
children 5669e8b3be70
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="$PACKAGE-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 }