wok view libxfcegui4/receipt @ rev 16221

ruby fix duplicated files ARM add libcroco, libgsf
author Christophe Lincoln <pankso@slitaz.org>
date Mon Mar 31 23:12:38 2014 +0200 (2014-03-31)
parents 6eff489aa802
children a5a22b5fb904
line source
1 # SliTaz package receipt.
3 PACKAGE="libxfcegui4"
4 VERSION="4.10.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce Gtk Widget library"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.xfce.org"
11 WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="gtk+ libxfce4util xfconf startup-notification dbus-glib libglade"
14 BUILD_DEPENDS="gtk+-dev libxfce4util-dev xfconf-dev startup-notification-dev
15 libglade-dev xcb-util-dev intltool util-linux-uuid-dev"
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 \
24 --disable-static \
25 --disable-debug \
26 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
35 mkdir -p $fs/usr/lib \
36 $fs/usr/share/locale
38 cp -a $install/usr/lib/*.so* $fs/usr/lib
39 cp -a $install/usr/lib/libglade $fs/usr/lib
40 cp -a $install/usr/share/locale/fr $fs/usr/share/locale
41 cp -a $install/usr/share/icons $fs/usr/share
43 # Remove SVG icons
44 rm -rf $fs/usr/share/icons/hicolor/scalable
46 }