wok-current annotate xfdesktop/receipt @ rev 4133

Up: xfdestop (4.6.1). Add: xfdesktop-extras
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Sep 20 13:25:41 2009 +0000 (2009-09-20)
parents 62c9d38f56c0
children 1b2b3994fe1e
rev   line source
erjo@2075 1 # SliTaz package receipt.
erjo@2075 2
erjo@2075 3 PACKAGE="xfdesktop"
erjo@4133 4 VERSION="4.6.1"
erjo@2075 5 CATEGORY="x-window"
erjo@4133 6 SHORT_DESC="Xfce Desktop"
erjo@2075 7 MAINTAINER="erjo@slitaz.org"
erjo@4133 8 DEPENDS="libxfce4util libxfcegui4 thunar libexo"
erjo@4133 9 BUILD_DEPENDS="libxfce4util-dev thunar-dev libexo-dev libxfcegui4-dev libwnck-dev xfconf-dev
erjo@4133 10 libglade-dev gamin-dev hal-dev libxfce4menu-dev xfce4-panel-dev"
erjo@2075 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@2075 12 WEB_SITE="http://www.xfce.org/"
erjo@4133 13 WGET_URL="http://www.p0llux.be/xfce/xfce-$VERSION/src/$TARBALL"
erjo@2075 14
erjo@2075 15 # Rules to configure and make the package.
erjo@2075 16 compile_rules()
erjo@2075 17 {
erjo@2075 18 cd $src
erjo@2075 19 ./configure --prefix=/usr \
erjo@2075 20 --sysconfdir=/etc \
erjo@2075 21 --enable-exo \
erjo@2075 22 --enable-thunarx \
erjo@4133 23 --disable-static \
erjo@2075 24 --mandir=/usr/share/man $CONFIGURE_ARGS && \
erjo@2075 25 make && make DESTDIR=$PWD/_pkg install
erjo@2075 26 }
erjo@2075 27
erjo@2075 28 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@2075 29 genpkg_rules()
erjo@2075 30 {
erjo@2075 31 mkdir -p $fs/usr \
erjo@2075 32 $fs/usr/share/locale \
erjo@4133 33 $fs/usr/share/xfce4
erjo@4133 34
erjo@2075 35 cp -a $_pkg/usr/bin $fs/usr
erjo@4133 36 cp -a $_pkg/etc $fs/
erjo@2075 37 cp -a $_pkg/usr/libexec $fs/usr
erjo@2075 38 cp -a $_pkg/usr/lib $fs/usr
erjo@2075 39 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
erjo@2075 40 cp -a $_pkg/usr/share/applications $fs/usr/share
erjo@4133 41 cp -a $_pkg/usr/share/desktop-directories $fs/usr/share
erjo@4133 42 cp -a $_pkg/usr/share/xfce4/panel-plugins $fs/usr/share/xfce4
erjo@2075 43
erjo@4133 44 strip -s $fs/usr/libexec/xfce4/panel-plugins/*
erjo@4133 45
erjo@2075 46 }
erjo@2075 47