wok annotate foomatic-filters/receipt @ rev 17005

Add pulseaudio
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 12 13:55:28 2014 +0200 (2014-08-12)
parents c8404989906f
children e9f15a545352
rev   line source
jozee@2765 1 # SliTaz package receipt.
jozee@2765 2
jozee@2765 3 PACKAGE="foomatic-filters"
slaxemulator@7262 4 VERSION="4.0.5"
jozee@2765 5 CATEGORY="system-tools"
jozee@2765 6 SHORT_DESC="Top quality printer drivers for Canon, Epson"
jozee@2765 7 MAINTAINER="jozee@slitaz.org"
pascal@15073 8 LICENSE="GPL2"
jozee@2765 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@2765 10 WEB_SITE="http://www.linuxprinting.org/foomatic.html"
jozee@2765 11 WGET_URL="http://www.openprinting.org/download/foomatic/$TARBALL"
jozee@4936 12 TAGS="printer driver printing"
jozee@2765 13
pascal@15073 14 DEPENDS="ghostscript gcc-lib-base"
pascal@15616 15 BUILD_DEPENDS="ghostscript-dev cups-dev cups a2ps autoconf"
pascal@15073 16
jozee@2765 17 # Rules to configure and make the package.
jozee@2765 18 compile_rules()
jozee@2765 19 {
jozee@2765 20 cd $src
jozee@2765 21 ./configure \
jozee@2765 22 --prefix=/usr \
jozee@2765 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
jozee@2765 30 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2765 31 genpkg_rules()
jozee@2765 32 {
jozee@2765 33 mkdir -p $fs/etc $fs/usr/lib
jozee@2765 34
pascal@15073 35 cp -a $install/usr/bin $fs/usr
pascal@15073 36 cp -a $install/usr/lib/cups $fs/usr/lib
pascal@15073 37 cp -a $install/etc $fs
jozee@2765 38
jozee@2765 39 }
jozee@2765 40