wok view splix/receipt @ rev 10691

tazwok: myabe fix receipt
author Christophe Lincoln <pankso@slitaz.org>
date Fri May 27 21:29:22 2011 +0200 (2011-05-27)
parents 64fae462fb28
children 3d805214d753
line source
1 # SliTaz package receipt.
3 PACKAGE="splix"
4 VERSION="2.0.0"
5 CATEGORY="system-tools"
6 MAINTAINER="jozee@slitaz.org"
7 SHORT_DESC="CUPS drivers for SPL (Samsung Printer Language) printers"
8 WEB_SITE="http://splix.ap2c.org/"
9 DEPENDS="cups gcc gcc-lib-base"
10 BUILD_DEPENDS="cups cups-dev jbigkit"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://downloads.sourceforge.net/splix/$TARBALL"
13 TAGS=""
15 # Rules to configure and make the package.
17 compile_rules() {
18 cd $src
19 sed -i 's/Value::Value &val/Value \&val/' src/ppdfile.cpp
20 make &&
21 make CUPSFILTER=/`cups-config --serverbin`/filter \
22 CUPSPPD=/`cups-config --datadir`/model \
23 install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib $fs/usr/share
30 cp -a $_pkg/usr/lib/cups $fs/usr/lib/
31 cp -a $_pkg/usr/share/cups $fs/usr/share
32 # gzip all ppd files
33 find $fs/usr/share/cups/model -name "*.ppd" | xargs gzip -n9
34 }