wok annotate libxfce4menu/receipt @ rev 4235

xfdesktop: fix FSH
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 24 15:52:59 2009 +0200 (2009-09-24)
parents e97114349b46
children 8752c40cc534
rev   line source
erjo@4139 1 # SliTaz package receipt.
erjo@4139 2
erjo@4139 3 PACKAGE="libxfce4menu"
erjo@4139 4 VERSION="4.6.1"
erjo@4139 5 CATEGORY="x-window"
erjo@4139 6 SHORT_DESC="Xfce Utility library"
erjo@4139 7 MAINTAINER="erjo@slitaz.org"
erjo@4139 8 DEPENDS="gtk+"
erjo@4139 9 BUILD_DEPENDS="gtk+-dev"
erjo@4139 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@4139 11 WEB_SITE="http://www.xfce.org"
pascal@4214 12 WGET_URL="$WEB_SITE/archive/xfce/$VERSION/src/$TARBALL"
erjo@4139 13
erjo@4139 14 # Rules to configure and make the package.
erjo@4139 15 compile_rules()
erjo@4139 16 {
erjo@4139 17 cd $src
erjo@4139 18 ./configure --prefix=/usr \
erjo@4139 19 --infodir=/usr/share/info \
erjo@4139 20 --mandir=/usr/share/man $CONFIGURE_ARGS && \
erjo@4139 21 make && make DESTDIR=$PWD/_pkg install
erjo@4139 22 }
erjo@4139 23
erjo@4139 24 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@4139 25 genpkg_rules()
erjo@4139 26 {
erjo@4139 27 mkdir -p $fs/usr/lib \
erjo@4139 28 $fs/usr/share/locale
erjo@4139 29
erjo@4139 30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@4139 31 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
erjo@4139 32 }
erjo@4139 33