wok annotate foomatic-filters/receipt @ rev 23281

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