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

Fix building: pciutils, pcmanfm-legacy, arj
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat May 13 17:25:31 2017 +0300 (2017-05-13)
parents 351d04534fa0
children e70c0b9c5adf
line source
1 # SliTaz package receipt.
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 DEPENDS="cups dbus fontconfig freetype glib ijs lcms2 libcups libgio libgnutls \
15 libjpeg-turbo libpng poppler qpdf tiff zlib"
16 BUILD_DEPENDS="cups-dev zlib-dev libjpeg-turbo-dev libpng-dev tiff-dev glib-dev \
17 lcms2-dev freetype-dev fontconfig-dev ijs-dev qpdf-dev poppler-dev dbus-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --sysconfdir=/etc \
24 --localstatedir=/var \
25 --without-rcdir \
26 --disable-static \
27 --disable-avahi \
28 --with-gs-path=/usr/bin/gs \
29 --with-pdftops-path=/usr/bin/gs \
30 --docdir=/usr/share/doc/cups-filters-$VERSION \
31 $CONFIGURE_ARGS &&
32 make && make install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 cook_copy_folders etc bin sbin cups ppd
39 cook_copy_files *.so*
40 # rm -rf $fs/usr/share/cups/ppdc
41 }