wok view cups-pdf/receipt @ rev 18902

Up: 2.2.5 to 2.2.8 - Add: description file - Fix: display msg /usr/lib/bluefish
author Leonardo Laporte <hackdorte@sapo.pt>
date Fri Feb 19 07:04:57 2016 -0200 (2016-02-19)
parents c7d1f2d1477f
children e1a067a8ee4c
line source
1 # SliTaz package receipt.
3 PACKAGE="cups-pdf"
4 VERSION="2.6.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="PDF printer for cups"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="${PACKAGE}_${VERSION}.tar.gz"
10 WEB_SITE="http://www.physik.uni-wuerzburg.de/~vrbehr/cups-pdf"
11 WGET_URL="${WEB_SITE}/src/${TARBALL}"
12 TAGS="printer printing"
14 DEPENDS="ghostscript cups"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src/src
20 gcc -Wall -o cups-pdf cups-pdf.c
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/etc/cups $fs/usr/lib/cups/backend $fs/usr/share/cups/model
27 cp -a $src/src/cups-pdf $fs/usr/lib/cups/backend
28 cp -a $src/extra/CUPS-PDF.ppd $fs/usr/share/cups/model
29 cp -a $src/extra/cups-pdf.conf $fs/etc/cups
30 }