homebrew-core/Formula/gdk-pixbuf.rb
Birger J. Nordølum d6f6e25091 Gdk-Pixbuf depends on jasper.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-29 08:34:18 -07:00

15 lines
451 B
Ruby

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'
depends_on 'jasper'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--with-libjasper", "--enable-introspection=no"
system "make install"
end
end