wok view gnome-desktop/receipt @ rev 11614

nanochess: catch ?black arg (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jan 21 23:16:13 2012 +0100 (2012-01-21)
parents 2f79d601d5bc
children 02631cdd0090
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="GConf gtk+ startup-notification"
9 BUILD_DEPENDS="python-dev libxml2-python GConf-dev gnome-doc-utils-dev intltool"
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 --disable-static \
26 --with-gnome-distributor="SliTaz GNU/Linux" \
27 $CONFIGURE_ARGS &&
28 make && make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib $fs/usr/share
35 #cp -a $_pkg/etc $fs
36 cp -a $_pkg/usr/bin $fs/usr
37 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
38 #cp -a $_pkg/usr/share/dbus-1 $fs/usr/share
39 }