wok annotate libxfce4menu/receipt @ rev 5033
gutenprint: update build_depends
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Mar 03 11:18:36 2010 +0100 (2010-03-03) |
parents | f165fed5166c |
children | a9f68b86f4af |
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" |
pascal@5003 | 8 DEPENDS="gtk+ libxfce4util" |
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 |