wok-undigest view gnome-desktop/receipt @ rev 3

Add gnome-desktop
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Fri Mar 19 19:03:08 2010 +0100 (2010-03-19)
parents
children 32ec52bc66b2
line source
1 # SliTaz package receipt.
3 PACKAGE="gnome-desktop"
4 VERSION="2.28.0"
5 CATEGORY="x-window"
6 SHORT_DESC="GNOME Desktop"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="lingnomeui"
9 BUILD_DEPENDS="pyhton-dev libxml2-python"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.gnome.org"
12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --sysconfdir=/etc/gnome \
21 --localstatedir=/var/lib \
22 --enable-gtk-doc-html=no \
23 --enable-gtk-doc=no \
24 --disable-scrollkeeper \
25 $CONFIGURE_ARGS &&
26 make && make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $_pkg/usr/bin $fs/usr
34 }