wok view gnome-desktop/receipt @ rev 14011

Add: schroedinger - Dirac Video codec
author Dominique Corbex <domcox@slitaz.org>
date Sun Feb 17 19:49:27 2013 +0100 (2013-02-17)
parents e579b4dc4449
children 380ffe05937a
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 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.gnome.org"
10 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
12 DEPENDS="GConf gtk+ startup-notification"
13 BUILD_DEPENDS="python-dev libxml2-python GConf-dev gnome-doc-utils-dev \
14 intltool gtk+-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --sysconfdir=/etc/gnome \
23 --localstatedir=/var/lib \
24 --enable-gtk-doc-html=no \
25 --enable-gtk-doc=no \
26 --disable-scrollkeeper \
27 --disable-static \
28 --with-gnome-distributor="SliTaz GNU/Linux" \
29 $CONFIGURE_ARGS &&
30 make && make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/lib $fs/usr/share
37 #cp -a $install/etc $fs
38 cp -a $install/usr/bin $fs/usr
39 cp -a $install/usr/lib/*.so* $fs/usr/lib
40 #cp -a $install/usr/share/dbus-1 $fs/usr/share
41 }