wok annotate 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
rev   line source
pascal@11214 1 # SliTaz package receipt.
pascal@11214 2
pascal@11214 3 PACKAGE="gnome-desktop"
pascal@11214 4 VERSION="2.28.0"
pascal@11214 5 CATEGORY="x-window"
pascal@11214 6 SHORT_DESC="GNOME Desktop"
pascal@11214 7 MAINTAINER="erjo@slitaz.org"
pascal@11214 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@11214 9 WEB_SITE="http://www.gnome.org"
pascal@11214 10 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
pascal@11214 11
pascal@13760 12 DEPENDS="GConf gtk+ startup-notification"
pascal@13760 13 BUILD_DEPENDS="python-dev libxml2-python GConf-dev gnome-doc-utils-dev \
pascal@13760 14 intltool gtk+-dev"
pascal@13760 15
pascal@11214 16 # Rules to configure and make the package.
pascal@11214 17 compile_rules()
pascal@11214 18 {
pascal@11214 19 cd $src
pascal@11214 20 ./configure \
pascal@11214 21 --prefix=/usr \
pascal@11214 22 --sysconfdir=/etc/gnome \
pascal@11214 23 --localstatedir=/var/lib \
pascal@11214 24 --enable-gtk-doc-html=no \
pascal@11214 25 --enable-gtk-doc=no \
pascal@11214 26 --disable-scrollkeeper \
pascal@11214 27 --disable-static \
pascal@11214 28 --with-gnome-distributor="SliTaz GNU/Linux" \
pascal@11214 29 $CONFIGURE_ARGS &&
pascal@11214 30 make && make DESTDIR=$DESTDIR install
pascal@11214 31 }
pascal@11214 32
pascal@11214 33 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11214 34 genpkg_rules()
pascal@11214 35 {
pascal@11214 36 mkdir -p $fs/usr/lib $fs/usr/share
pascal@13760 37 #cp -a $install/etc $fs
pascal@13760 38 cp -a $install/usr/bin $fs/usr
pascal@13760 39 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@13760 40 #cp -a $install/usr/share/dbus-1 $fs/usr/share
pascal@11214 41 }
pascal@11214 42