homebrew-core/Formula/gdk-pixbuf.rb
Philippe Strauss 585e1f6548 gdk-pixbuf 2.23.5
This version should be compatible with Lion.
Fixes Homebrew/homebrew#6442

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-07-20 08:11:24 -07:00

19 lines
546 B
Ruby

require 'formula'
class GdkPixbuf < Formula
homepage 'http://gtk.org'
url 'http://ftp.gnome.org/pub/GNOME/sources/gdk-pixbuf/2.23/gdk-pixbuf-2.23.5.tar.bz2'
md5 '025c38de1a599b0ded6c92d34924dd85'
depends_on 'glib'
depends_on 'jasper'
depends_on 'libtiff'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-libjasper",
"--enable-introspection=no"
system "make install"
end
end