wok view gnome-menus/receipt @ rev 1173

get-skype, get-google-earth, get-flash-plugin: use 'tazpkg pack'
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 02 09:34:54 2008 +0000 (2008-08-02)
parents dbf9019b28be
children c1ff74d9b6f4
line source
1 # SliTaz package receipt.
3 PACKAGE="gnome-menus"
4 VERSION="2.18.3"
5 CATEGORY="x-window"
6 SHORT_DESC="GNOME menu libs and tools (without desktop files)."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="python"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnome.org/"
11 WGET_URL="http://ftp.gnome.org/pub/GNOME/desktop/2.18/$VERSION/sources/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --sysconfdir=/etc \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS
22 make
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 cp -a $_pkg/usr/lib/python2.5 $fs/usr/lib
32 rm $fs/usr/lib/python2.5/site-packages/*.*a
33 }