Clutter 1.0.8

An open source software library for creating fast, visually rich,
portable and animated graphical user interfaces.

Signed-off-by: David Höppner <0xffea@gmail.com>
master
Tim Horton 2010-02-13 20:59:16 -05:00 committed by David Höppner
parent 34300a6cb3
commit 85526ae5ee
1 changed files with 18 additions and 0 deletions

18
Formula/clutter.rb Normal file
View File

@ -0,0 +1,18 @@
require 'formula'
class Clutter <Formula
url 'http://www.clutter-project.org/sources/clutter/1.0/clutter-1.0.8.tar.bz2'
homepage 'http://www.clutter-project.org/'
md5 '687f9699ea5590091282034a936c6dc7'
depends_on 'pango'
depends_on 'glib'
depends_on 'pkg-config'
depends_on 'intltool'
depends_on 'gettext'
def install
system "./configure", "--prefix=#{prefix}", "--with-flavour=osx", "--with-imagebackend=quartz"
system "make install"
end
end