blob: 723ccc046562a0ef0042a568d774b1817ee22be3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
require 'formula'
class Clutter < Formula
homepage 'http://clutter-project.org/'
url 'http://download.gnome.org/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
|