diff options
| author | Birger J. Nordølum | 2011-03-25 21:02:55 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2011-03-26 13:24:14 -0700 |
| commit | 0a48aabe2ef8f41b9562b2c867f402cd3e87a077 (patch) | |
| tree | 2b54f6ed1a8e81a0fa6208528c065e0aaec426a0 | |
| parent | cec051b0542b2f1883420d98bf54a0dcbc39067d (diff) | |
| download | homebrew-0a48aabe2ef8f41b9562b2c867f402cd3e87a077.tar.bz2 | |
Gdk-Pixbuf 2.22.1
Thanks to MacPorts.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/gdk-pixbuf.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/gdk-pixbuf.rb b/Library/Formula/gdk-pixbuf.rb new file mode 100644 index 000000000..a6e8b5852 --- /dev/null +++ b/Library/Formula/gdk-pixbuf.rb @@ -0,0 +1,13 @@ +require 'formula' + +class GdkPixbuf < Formula + homepage 'http://gtk.org' + url 'http://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/2.22/gdk-pixbuf-2.22.1.tar.bz2' + md5 '716c4593ead3f9c8cca63b8b1907a561' + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}", "--with-libjasper", "--enable-introspection=no" + system "make install" + end +end |
