wok view clutter/receipt @ rev 5960

gcc: update depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 05 21:27:52 2010 +0200 (2010-08-05)
parents cead660f7770
children 8efe4965fb57
line source
1 # SliTaz package receipt.
3 PACKAGE="clutter"
4 VERSION="1.0.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Animated graphical user interfaces library."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ mesa libdrm"
9 SUGGESTED="nvidia"
10 BUILD_DEPENDS="gtk+-dev mesa-dev libdrm-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://clutter-project.org/"
13 WGET_URL="http://www.clutter-project.org/sources/clutter/1.0/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 }