wok view libxfce4ui/receipt @ rev 10015

libxfce4ui: fix bdeps
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu May 19 10:07:23 2011 +0200 (2011-05-19)
parents f6da05ab6dbd
children 7a41942660df
line source
1 # SliTaz package receipt.
3 PACKAGE="libxfce4ui"
4 VERSION="4.8.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce Gtk Widget library"
7 MAINTAINER="erjo@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.xfce.org"
10 WGET_URL="http://archive.xfce.org/xfce/${VERSION%.*}/src/$TARBALL"
12 DEPENDS="gtk+ libxfce4util xfconf startup-notification dbus-glib libglade util-linux-ng-uuid libxfce4ui"
13 BUILD_DEPENDS="gtk+-dev libxfce4util-dev xfconf-dev startup-notification-dev
14 libglade-dev xcb-util-dev util-linux-ng-uuid-dev intltool libxfce4ui-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr \
21 --sysconfdir=/etc \
22 --disable-debug $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib \
31 $fs/usr/share/locale
33 cp -a $_pkg/etc $fs/
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
36 }