79a0b52b54
Building the X11 backend fails with XQuartz (at least); patches welcome to remedy this. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
25 lines
732 B
Ruby
25 lines
732 B
Ruby
require 'formula'
|
|
|
|
class Clutter < Formula
|
|
homepage 'http://clutter-project.org/'
|
|
url 'http://source.clutter-project.org/sources/clutter/1.10/clutter-1.10.6.tar.bz2'
|
|
sha256 '791bf752de2636989b82007d9f2a3a83bba56b13c329f40ca67e4d35ed982b31'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'atk'
|
|
depends_on 'intltool'
|
|
depends_on 'json-glib'
|
|
depends_on 'pango'
|
|
depends_on 'cairo' # for cairo-gobject
|
|
depends_on :x11
|
|
depends_on 'cogl'
|
|
depends_on 'gdk-pixbuf'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}",
|
|
"--disable-introspection",
|
|
"--enable-quartz-backend",
|
|
"--disable-x11-backend"
|
|
system "make install"
|
|
end
|
|
end
|