wok view splix/receipt @ rev 4814

Up: claws-mail-vcalendar(2.0.7)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue Jan 19 01:08:11 2010 +0100 (2010-01-19)
parents
children 4897058add72
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"
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 make &&
20 make CUPSFILTER=$PWD/_pkg/`cups-config --serverbin`/filter \
21 CUPSPPD=$PWD/_pkg/`cups-config --datadir`/model \
22 install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib $fs/usr/share
29 cp -a $_pkg/usr/lib/cups $fs/usr/lib/
30 cp -a $_pkg/usr/share/cups $fs/usr/share
31 # gzip all ppd files
32 find $fs/usr/share/cups/model -name "*.ppd" | xargs gzip -n9
33 }