wok view foomatic-filters/receipt @ rev 22767

updated foomatic-filters (4.0.5 -> 4.0.17)
author Hans-G?nter Theisgen
date Sat Jan 25 14:46:57 2020 +0100 (2020-01-25)
parents fd22b033a84a
children bfabe25c21ff
line source
1 # SliTaz package receipt.
3 PACKAGE="foomatic-filters"
4 VERSION="4.0.17"
5 CATEGORY="system-tools"
6 TAGS="printer driver printing"
7 SHORT_DESC="Foomatic filters needed to run print queues with Foomatic PPDs."
8 MAINTAINER="jozee@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://wiki.linuxfoundation.org/openprinting/database/foomatic"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="http://www.openprinting.org/download/foomatic/$TARBALL"
15 DEPENDS="gcc-lib-base ghostscript"
16 BUILD_DEPENDS="a2ps autoconf cups cups-dev dbus-dev ghostscript-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --sysconfdir=/etc \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/etc
33 mkdir -p $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
38 }