2010-02-14 01:59:16 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Clutter < Formula
|
2011-04-10 14:54:55 +00:00
|
|
|
homepage 'http://clutter-project.org/'
|
|
|
|
url 'http://source.clutter-project.org/sources/clutter/1.6/clutter-1.6.14.tar.bz2'
|
|
|
|
sha256 '0564e57ca8eb24e76014627c0bb28a80a6c01b620ba14bc4198365562549576d'
|
2010-02-14 01:59:16 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2011-04-10 14:54:55 +00:00
|
|
|
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'
|
2010-02-14 01:59:16 +00:00
|
|
|
depends_on 'intltool'
|
2011-04-10 14:54:55 +00:00
|
|
|
depends_on 'json-glib'
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pango'
|
2010-02-14 01:59:16 +00:00
|
|
|
|
|
|
|
def install
|
2011-04-10 14:54:55 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--with-flavour=osx",
|
|
|
|
"--with-imagebackend=quartz"
|
2010-02-14 01:59:16 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|