wok view clutter-gtk/receipt @ rev 12134

Re-fix clutter gtk so it build with both tazwok & cookutils
author Antoine Bodin <gokhlayeh@slitaz.org>
date Tue Mar 13 21:06:51 2012 +0100 (2012-03-13)
parents 082eb0e58670
children 4e6cb5a22274
line source
1 # SliTaz package receipt.
3 PACKAGE="clutter-gtk"
4 VERSION="0.10.8"
5 CATEGORY="x-window"
6 SHORT_DESC="GTK+ libraries for Clutter."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ clutter"
9 BUILD_DEPENDS="gtk+-dev clutter-dev gobject-introspection automake autoconf \
10 gobject-introspection-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://clutter-project.org/"
13 WGET_URL="http://www.clutter-project.org/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 patch -Np1 -i $stuff/fix-gir.patch
20 sed -i -e 's/GTK_WIDGET_REALIZED/gtk_widget_get_realized/' \
21 -e 's/GTK_WIDGET_VISIBLE/gtk_widget_get_visible/' \
22 clutter-gtk/gtk-clutter-embed.c
23 ./configure \
24 --prefix=/usr \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 cp -a $_pkg/usr/lib/girepository-1.0 $fs/usr/lib
36 }