wok annotate xfce4-appfinder/receipt @ rev 2886

pekwm: add custom keys, start and improve menu
author Rohit Joshi <jozee@slitaz.org>
date Mon May 04 12:27:31 2009 +0000 (2009-05-04)
parents 917290e1ad30
children 535a17575f08
rev   line source
erjo@2073 1 # SliTaz package receipt.
erjo@2073 2
erjo@2073 3 PACKAGE="xfce4-appfinder"
erjo@2073 4 VERSION="4.4.3"
erjo@2073 5 CATEGORY="x-window"
erjo@2073 6 SHORT_DESC="Xfce Application Finder"
erjo@2073 7 MAINTAINER="erjo@slitaz.org"
pascal@2528 8 DEPENDS="libxfcegui4 startup-notification xorg-libXdamage"
erjo@2073 9 BUILD_DEPENDS="libxfcegui4-dev"
erjo@2073 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@2073 11 WEB_SITE="http://www.xfce.org"
erjo@2073 12 WGET_URL="http://www.p0llux.be/xfce/xfce-4.4.3/src/$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 \
erjo@2073 19 --mandir=/usr/share/man $CONFIGURE_ARGS && \
erjo@2073 20 make && make DESTDIR=$PWD/_pkg install
erjo@2073 21 }
erjo@2073 22
erjo@2073 23 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@2073 24 genpkg_rules()
erjo@2073 25 {
erjo@2073 26 mkdir -p $fs/usr/share/locale
erjo@2073 27
erjo@2073 28 cp -a $_pkg/usr/bin $fs/usr
erjo@2073 29 cp -a $_pkg/usr/share/icons $fs/usr/share
erjo@2073 30 cp -a $_pkg/usr/share/applications $fs/usr/share
erjo@2073 31 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
erjo@2073 32 }
erjo@2073 33