aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2011-04-04 20:13:16 -0700
committerAdam Vandenberg2011-04-04 20:13:16 -0700
commit0f3213f6a60e8dc37bcc217e2ebf182f5f4f9d64 (patch)
treefca86ba5acfa707cc266180b301a75b014d4e82b /Library/Formula
parent1fb85efce5e47a832f187f9c8ee12bc42649fa3a (diff)
downloadhomebrew-0f3213f6a60e8dc37bcc217e2ebf182f5f4f9d64.tar.bz2
gdk-pixbuf depends on glib
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/gdk-pixbuf.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Formula/gdk-pixbuf.rb b/Library/Formula/gdk-pixbuf.rb
index 890e20fff..525f25342 100644
--- a/Library/Formula/gdk-pixbuf.rb
+++ b/Library/Formula/gdk-pixbuf.rb
@@ -5,11 +5,14 @@ class GdkPixbuf < Formula
url 'http://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/2.22/gdk-pixbuf-2.22.1.tar.bz2'
md5 '716c4593ead3f9c8cca63b8b1907a561'
+ depends_on 'glib'
depends_on 'jasper'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}", "--with-libjasper", "--enable-introspection=no"
+ "--prefix=#{prefix}",
+ "--with-libjasper",
+ "--enable-introspection=no"
system "make install"
end
end