wok view libxfcegui4/receipt @ rev 7187

Fixed grep to remove and replace soft link to busybox in pre_install and post_remove functions.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Nov 08 22:43:35 2010 +0000 (2010-11-08)
parents 8752c40cc534
children 0874004b631d
line source
1 # SliTaz package receipt.
3 PACKAGE="libxfcegui4"
4 VERSION="4.6.4"
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce Gtk Widget library"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="gtk+ libxfce4util xfconf startup-notification dbus-glib libglade"
9 BUILD_DEPENDS="gtk+-dev libxfce4util-dev xfconf-dev startup-notification-dev
10 libglade-dev xcb-util-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.xfce.org"
13 WGET_URL="$WEB_SITE/archive/xfce/$VERSION/src/$TARBALL \
14 http://www.p0llux.be/xfce/archive/xfce/4.6.2/src/$TARBALL"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
32 mkdir -p $fs/usr/lib \
33 $fs/usr/share/locale
35 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
36 cp -a $_pkg/usr/lib/libglade $fs/usr/lib
37 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
38 cp -a $_pkg/usr/share/icons $fs/usr/share
40 # Remove SVG icons
41 rm -rf $fs/usr/share/icons/hicolor/scalable
43 }