wok view foomatic-filters/receipt @ rev 21217

updated scim-tables* (0.5.9 -> 0.5.14.1)
author Hans-G?nter Theisgen
date Tue Apr 09 17:52:52 2019 +0100 (2019-04-09)
parents c8404989906f
children e9f15a545352
line source
1 # SliTaz package receipt.
3 PACKAGE="foomatic-filters"
4 VERSION="4.0.5"
5 CATEGORY="system-tools"
6 SHORT_DESC="Top quality printer drivers for Canon, Epson"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.linuxprinting.org/foomatic.html"
11 WGET_URL="http://www.openprinting.org/download/foomatic/$TARBALL"
12 TAGS="printer driver printing"
14 DEPENDS="ghostscript gcc-lib-base"
15 BUILD_DEPENDS="ghostscript-dev cups-dev cups a2ps autoconf"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --sysconfdir=/etc \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/etc $fs/usr/lib
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/lib/cups $fs/usr/lib
37 cp -a $install/etc $fs
39 }