wok view xfce-utils/receipt @ rev 2322

tazusb: use main mirror
author Christophe Lincoln <pankso@slitaz.org>
date Fri Feb 27 22:59:59 2009 +0100 (2009-02-27)
parents
children 917290e1ad30
line source
1 # SliTaz package receipt.
3 PACKAGE="xfce-utils"
4 VERSION="4.4.3"
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce utilities"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="libxfce4mcs libxfce4util libxfcegui4 xfce-mcs-manager"
9 BUILD_DEPENDS="libxfce4mcs-dev libxfce4util-dev libxfcegui4-dev xfce-mcs-manager-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.xfce.org"
12 WGET_URL="http://www.p0llux.be/xfce/xfce-4.4.3/src/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr \
19 --sysconfdir=/etc \
20 --disable-gdm \
21 --enable-dbus \
22 --disable-debug \
23 --with-browser=firefox \
24 --with-terminal=xfterm4 \
25 --mandir=/usr/share/man $CONFIGURE_ARGS && \
26 make && make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr $fs/usr/share/locale
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/etc $fs/
35 cp -a $_pkg/usr/share/icons $fs/usr/share
36 cp -a $_pkg/usr/share/dbus* $fs/usr/share
37 cp -a $_pkg/usr/share/icons $fs/usr/share
38 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
40 }