blob: cb8d517dde524ade10aeb24490162efbf8cfb7bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  | 
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'
  depends_on 'pkg-config' => :build
  depends_on 'gettext'
  depends_on 'glib'
  depends_on 'intltool'
  depends_on 'pango'
  def install
    system "./configure", "--prefix=#{prefix}", "--with-flavour=osx", "--with-imagebackend=quartz"
    system "make install"
  end
end
  |