wok view libxfcegui4/receipt @ rev 4143

Add: xfce4-settings
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Sep 20 13:39:14 2009 +0000 (2009-09-20)
parents 2e55de4816a6
children f165fed5166c
line source
1 # SliTaz package receipt.
3 PACKAGE="libxfcegui4"
4 VERSION="4.6.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce Gtk Widget library"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="gtk+ libxfce4util xfconf"
9 BUILD_DEPENDS="gtk+-dev libxfce4util-dev xfconf-dev startup-notification-dev libglade-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.xfce.org"
12 WGET_URL="http://www.p0llux.be/xfce/xfce-$VERSION/src/$TARBALL
13 http://www.tx-us.xfce.org/archive/xfce-$VERSION/src/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man $CONFIGURE_ARGS
23 make
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
31 mkdir -p $fs/usr/lib \
32 $fs/usr/share/locale
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 cp -a $_pkg/usr/lib/libglade $fs/usr/lib
36 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
37 cp -a $_pkg/usr/share/icons $fs/usr/share
39 # Remove SVG icons
40 rm -rf $fs/usr/share/icons/hicolor/scalable
42 }