diff options
| author | Tim Horton | 2010-02-13 20:59:16 -0500 |
|---|---|---|
| committer | David Höppner | 2010-02-14 18:33:45 +0100 |
| commit | 9e071b82e6ec1d6769f0823140e9b0db850fab6e (patch) | |
| tree | 0f58db18135e59442012c0ddc2361cea3ad0bf5b /Library/Formula | |
| parent | b3ef3326faff19a6c5aeda5e339a1879a8673407 (diff) | |
| download | homebrew-9e071b82e6ec1d6769f0823140e9b0db850fab6e.tar.bz2 | |
Clutter 1.0.8
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>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/clutter.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/clutter.rb b/Library/Formula/clutter.rb new file mode 100644 index 000000000..6e4e7df4b --- /dev/null +++ b/Library/Formula/clutter.rb @@ -0,0 +1,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 '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 |
