wok-stable view clutter-gtk/receipt @ rev 12140

clutter-gtk: Fixed again. It needs gtk-doc and a autoreconf -i inorder to not get 'clutter/clutter.h: No such file or directory' error.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Mar 13 22:22:35 2012 -0500 (2012-03-13)
parents cba3722453f5
children 1da4339c4cf1
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-dev automake autoconf gtk-doc"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://clutter-project.org/"
12 WGET_URL="http://www.clutter-project.org/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 patch -Np1 -i $stuff/fix-gir.patch
19 sed -i -e 's/GTK_WIDGET_REALIZED/gtk_widget_get_realized/' \
20 -e 's/GTK_WIDGET_VISIBLE/gtk_widget_get_visible/' \
21 clutter-gtk/gtk-clutter-embed.c
22 autoreconf -i
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 }