wok view xfce-utils/receipt @ rev 3809

Up: tazpkg (3.0) - New commands, improvment and fix
author Christophe Lincoln <pankso@slitaz.org>
date Wed Aug 05 23:26:27 2009 +0200 (2009-08-05)
parents 917290e1ad30
children 4bd6ca8af55d
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 dbus dbus-glib \
9 xorg-libXdamage"
10 BUILD_DEPENDS="libxfce4mcs-dev libxfce4util-dev libxfcegui4-dev xfce-mcs-manager-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.xfce.org"
13 WGET_URL="http://www.p0llux.be/xfce/xfce-4.4.3/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 --disable-gdm \
22 --enable-dbus \
23 --disable-debug \
24 --with-browser=firefox \
25 --with-terminal=xfterm4 \
26 --mandir=/usr/share/man $CONFIGURE_ARGS && \
27 make && make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr $fs/usr/share/locale
34 cp -a $_pkg/usr/bin $fs/usr
35 cp -a $_pkg/etc $fs/
36 cp -a $_pkg/usr/share/icons $fs/usr/share
37 cp -a $_pkg/usr/share/dbus* $fs/usr/share
38 cp -a $_pkg/usr/share/icons $fs/usr/share
39 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
41 }