wok annotate xfce4-appfinder/receipt @ rev 9732

linux: Fix 2. clean up and make it build with cookutils: FIXME: tazwok specif code (aufs is ok for cook and tazwok I guess)
author Christophe Lincoln <pankso@slitaz.org>
date Mon May 09 15:57:19 2011 +0200 (2011-05-09)
parents 2e5aecadbe0e
children f1502b62ffec
rev   line source
erjo@2073 1 # SliTaz package receipt.
erjo@2073 2
erjo@2073 3 PACKAGE="xfce4-appfinder"
erjo@8021 4 VERSION="4.8.0"
erjo@2073 5 CATEGORY="x-window"
erjo@2073 6 SHORT_DESC="Xfce Application Finder"
erjo@2073 7 MAINTAINER="erjo@slitaz.org"
slaxemulator@8710 8 DEPENDS="gtk+ garcon libxfce4ui xfconf thunar gamin dbus-glib startup-notification"
slaxemulator@8710 9 BUILD_DEPENDS="intltool"
erjo@2073 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@2073 11 WEB_SITE="http://www.xfce.org"
slaxemulator@8289 12 WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
erjo@2073 13
erjo@2073 14 # Rules to configure and make the package.
erjo@2073 15 compile_rules()
erjo@2073 16 {
erjo@2073 17 cd $src
erjo@2073 18 ./configure --prefix=/usr --infodir=/usr/share/info \
slaxemulator@8035 19 --mandir=/usr/share/man $CONFIGURE_ARGS \
slaxemulator@8035 20 --disable-static --disable-debug && \
erjo@2073 21 make && make DESTDIR=$PWD/_pkg install
erjo@2073 22 }
erjo@2073 23
erjo@2073 24 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@2073 25 genpkg_rules()
erjo@2073 26 {
erjo@2073 27 mkdir -p $fs/usr/share/locale
erjo@2073 28
erjo@2073 29 cp -a $_pkg/usr/bin $fs/usr
erjo@2073 30 cp -a $_pkg/usr/share/icons $fs/usr/share
erjo@2073 31 cp -a $_pkg/usr/share/applications $fs/usr/share
erjo@2073 32 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
erjo@2073 33 }
erjo@2073 34