aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBirger J. Nordølum2011-03-25 21:02:55 +0100
committerAdam Vandenberg2011-03-26 13:24:14 -0700
commit0a48aabe2ef8f41b9562b2c867f402cd3e87a077 (patch)
tree2b54f6ed1a8e81a0fa6208528c065e0aaec426a0 /Library
parentcec051b0542b2f1883420d98bf54a0dcbc39067d (diff)
downloadhomebrew-0a48aabe2ef8f41b9562b2c867f402cd3e87a077.tar.bz2
Gdk-Pixbuf 2.22.1
Thanks to MacPorts. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/gdk-pixbuf.rb13
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