wok view xfdesktop/receipt @ rev 4159

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