2010-02-14 01:59:16 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Clutter < Formula
|
2010-02-14 01:59:16 +00:00
|
|
|
url 'http://www.clutter-project.org/sources/clutter/1.0/clutter-1.0.8.tar.bz2'
|
|
|
|
homepage 'http://www.clutter-project.org/'
|
|
|
|
md5 '687f9699ea5590091282034a936c6dc7'
|
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
depends_on 'gettext'
|
2010-02-14 01:59:16 +00:00
|
|
|
depends_on 'glib'
|
|
|
|
depends_on 'intltool'
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pango'
|
2010-02-14 01:59:16 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--with-flavour=osx", "--with-imagebackend=quartz"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|