85526ae5ee
An open source software library for creating fast, visually rich, portable and animated graphical user interfaces. Signed-off-by: David Höppner <0xffea@gmail.com>
18 lines
474 B
Ruby
18 lines
474 B
Ruby
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 'pango'
|
|
depends_on 'glib'
|
|
depends_on 'pkg-config'
|
|
depends_on 'intltool'
|
|
depends_on 'gettext'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--with-flavour=osx", "--with-imagebackend=quartz"
|
|
system "make install"
|
|
end
|
|
end
|