# SliTaz package receipt. PACKAGE="foomatic-filters" VERSION="4.0.5" CATEGORY="system-tools" SHORT_DESC="Top quality printer drivers for Canon, Epson" MAINTAINER="jozee@slitaz.org" DEPENDS="ghostscript gcc-lib-base" BUILD_DEPENDS="ghostscript-dev cups-dev" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.linuxprinting.org/foomatic.html" WGET_URL="http://www.openprinting.org/download/foomatic/$TARBALL" TAGS="printer driver printing" # Rules to configure and make the package. compile_rules() { cd $src ./configure \ --prefix=/usr \ --sysconfdir=/etc \ $CONFIGURE_ARGS && make && make DESTDIR=$PWD/_pkg install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/etc $fs/usr/lib cp -a $_pkg/usr/bin $fs/usr cp -a $_pkg/usr/lib/cups $fs/usr/lib cp -a $_pkg/etc $fs }