diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/clutter.rb | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/Library/Formula/clutter.rb b/Library/Formula/clutter.rb index 79d6d230f..a1f731422 100644 --- a/Library/Formula/clutter.rb +++ b/Library/Formula/clutter.rb @@ -1,18 +1,23 @@ 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' + homepage 'http://clutter-project.org/' + url 'http://source.clutter-project.org/sources/clutter/1.6/clutter-1.6.14.tar.bz2' + sha256 '0564e57ca8eb24e76014627c0bb28a80a6c01b620ba14bc4198365562549576d' depends_on 'pkg-config' => :build - depends_on 'gettext' - depends_on 'glib' + depends_on 'atk' + # Cairo is keg-only and usually only used for Leopard builds. + # But Clutter requires a newer version of Cairo that what comes with Snow Leopard. + depends_on 'cairo' depends_on 'intltool' + depends_on 'json-glib' depends_on 'pango' def install - system "./configure", "--prefix=#{prefix}", "--with-flavour=osx", "--with-imagebackend=quartz" + system "./configure", "--prefix=#{prefix}", + "--with-flavour=osx", + "--with-imagebackend=quartz" system "make install" end end |
