wok annotate gnome-desktop/receipt @ rev 11830

U: phpmyadmin(3.4.10.1)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Mon Feb 27 00:22:36 2012 +0100 (2012-02-27)
parents 2f79d601d5bc
children 02631cdd0090
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"
gokhlayeh@11570 8 DEPENDS="GConf gtk+ startup-notification"
gokhlayeh@11570 9 BUILD_DEPENDS="python-dev libxml2-python GConf-dev gnome-doc-utils-dev intltool"
pascal@11214 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@11214 11 WEB_SITE="http://www.gnome.org"
pascal@11214 12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
pascal@11214 13
pascal@11214 14 # Rules to configure and make the package.
pascal@11214 15 compile_rules()
pascal@11214 16 {
pascal@11214 17 cd $src
pascal@11214 18 ./configure \
pascal@11214 19 --prefix=/usr \
pascal@11214 20 --sysconfdir=/etc/gnome \
pascal@11214 21 --localstatedir=/var/lib \
pascal@11214 22 --enable-gtk-doc-html=no \
pascal@11214 23 --enable-gtk-doc=no \
pascal@11214 24 --disable-scrollkeeper \
pascal@11214 25 --disable-static \
pascal@11214 26 --with-gnome-distributor="SliTaz GNU/Linux" \
pascal@11214 27 $CONFIGURE_ARGS &&
pascal@11214 28 make && make DESTDIR=$DESTDIR install
pascal@11214 29 }
pascal@11214 30
pascal@11214 31 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11214 32 genpkg_rules()
pascal@11214 33 {
pascal@11214 34 mkdir -p $fs/usr/lib $fs/usr/share
pascal@11214 35 #cp -a $_pkg/etc $fs
pascal@11214 36 cp -a $_pkg/usr/bin $fs/usr
pascal@11214 37 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pascal@11214 38 #cp -a $_pkg/usr/share/dbus-1 $fs/usr/share
pascal@11214 39 }
pascal@11214 40