wok view libxfce4ui/receipt @ rev 11230

pango: update deps (thanks mojo)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 05 10:12:34 2011 +0100 (2011-11-05)
parents 340979732680
children 73641efed1cc
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 \
13 util-linux-ng-uuid"
14 BUILD_DEPENDS="gtk+-dev libxfce4util-dev xfconf-dev startup-notification-dev
15 libglade-dev xcb-util-dev util-linux-ng-uuid-dev intltool"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr \
22 --sysconfdir=/etc \
23 --disable-debug $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib \
32 $fs/usr/share/locale
34 cp -a $_pkg/etc $fs/
35 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
36 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
37 }