wok annotate xfce4-appfinder/receipt @ rev 10847

busybox/httpd_helper.sh: normalized variable names
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 11 17:53:28 2011 +0200 (2011-06-11)
parents 9137f9e0fcd9
children 73641efed1cc
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"
erjo@2073 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@2073 9 WEB_SITE="http://www.xfce.org"
slaxemulator@8289 10 WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
erjo@2073 11
erjo@9870 12 DEPENDS="gtk+ garcon libxfce4ui xfconf thunar gamin dbus-glib startup-notification \
erjo@9870 13 garcon util-linux-ng-uuid"
erjo@9870 14 BUILD_DEPENDS="intltool libxfce4util-dev libxfce4ui-dev garcon-dev xfconf-dev \
erjo@9870 15 startup-notification-dev dbus-glib-dev util-linux-ng-uuid-dev "
erjo@9870 16
erjo@2073 17 # Rules to configure and make the package.
erjo@2073 18 compile_rules()
erjo@2073 19 {
erjo@2073 20 cd $src
erjo@9870 21 ./configure --prefix=/usr \
erjo@9870 22 --disable-static \
erjo@9870 23 --disable-debug $CONFIGURE_ARGS &&
erjo@9870 24 make && make DESTDIR=$DESTDIR install
erjo@2073 25 }
erjo@2073 26
erjo@2073 27 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@2073 28 genpkg_rules()
erjo@2073 29 {
erjo@2073 30 mkdir -p $fs/usr/share/locale
erjo@2073 31
erjo@2073 32 cp -a $_pkg/usr/bin $fs/usr
erjo@2073 33 cp -a $_pkg/usr/share/icons $fs/usr/share
erjo@2073 34 cp -a $_pkg/usr/share/applications $fs/usr/share
erjo@2073 35 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
erjo@2073 36 }
erjo@2073 37