wok annotate xfprint/receipt @ rev 5953

Up: exiftool 8.27
author Antoine Bodin <gokhlayeh@mailoo.org>
date Tue Aug 03 22:23:30 2010 +0200 (2010-08-03)
parents 1b2b3994fe1e
children a3ce54180620
rev   line source
erjo@2075 1 # SliTaz package receipt.
erjo@2075 2
erjo@2075 3 PACKAGE="xfprint"
erjo@4134 4 VERSION="4.6.1"
erjo@2075 5 CATEGORY="x-window"
erjo@2075 6 SHORT_DESC="Xfce Printer manager"
erjo@2075 7 MAINTAINER="erjo@slitaz.org"
pascal@5008 8 DEPENDS="libxfcegui4 libxfce4util cups dbus-glib startup-notification \
pascal@5008 9 libcomerr3"
erjo@4134 10 BUILD_DEPENDS="libxfcegui4-dev libxfce4util-dev cups-dev"
erjo@2075 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@2075 12 WEB_SITE="http://www.xfce.org"
pascal@4220 13 WGET_URL="$WEB_SITE/archive/xfce/$VERSION/src/$TARBALL"
erjo@2075 14
erjo@2075 15 # Rules to configure and make the package.
erjo@2075 16 compile_rules()
erjo@2075 17 {
erjo@2075 18 cd $src
erjo@2075 19 ./configure --prefix=/usr \
erjo@2075 20 --infodir=/usr/share/info \
erjo@2075 21 --mandir=/usr/share/man $CONFIGURE_ARGS && \
erjo@2075 22 make && make DESTDIR=$PWD/_pkg install
erjo@2075 23 }
erjo@2075 24
erjo@2075 25 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@2075 26 genpkg_rules()
erjo@2075 27 {
erjo@2075 28 mkdir -p $fs/usr
erjo@2075 29
erjo@2075 30 cp -a $_pkg/usr/bin $fs/usr
erjo@2075 31 cp -a $_pkg/usr/lib $fs/usr
erjo@2075 32
erjo@2075 33 # Remove unecessary files
erjo@2075 34 find $fs/ -name "*.*a" -exec rm -f {} \;
erjo@2075 35 rm -rf $fs/usr/lib/pkgconfig
erjo@2075 36 # Remove SVG icons
erjo@2075 37 rm -rf $fs/usr/share/icons/hicolor/scalable
erjo@2075 38
erjo@2075 39
erjo@2075 40 }
erjo@2075 41