c8591739cb
c.f. Homebrew/homebrew#10377. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
25 lines
734 B
Ruby
25 lines
734 B
Ruby
require 'formula'
|
|
|
|
class Clutter < Formula
|
|
homepage 'http://clutter-project.org/'
|
|
url 'http://ftp.gnome.org/pub/gnome/sources/clutter/1.10/clutter-1.10.8.tar.xz'
|
|
sha256 '7c08c2deff62c134c1a3d18e04dcb6fbae4bbc541c800638b9fc3d71fe4a64bf'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'xz' => :build
|
|
depends_on 'glib'
|
|
depends_on 'gdk-pixbuf'
|
|
depends_on 'cogl'
|
|
depends_on 'cairo' # for cairo-gobject
|
|
depends_on 'atk'
|
|
depends_on 'pango'
|
|
depends_on 'json-glib'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}",
|
|
"--disable-introspection",
|
|
"--enable-quartz-backend",
|
|
"--disable-x11-backend"
|
|
system "make install"
|
|
end
|
|
end
|