Gdk-Pixbuf 2.22.1

Thanks to MacPorts.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Birger J. Nordølum 2011-03-25 21:02:55 +01:00 committed by Adam Vandenberg
parent bc32b9c869
commit d1cf9b2cba

13
Formula/gdk-pixbuf.rb Normal file
View file

@ -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