blob: 525f253429e6796d8d600d0919a1449ebdd48ef4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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 'glib'
depends_on 'jasper'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-libjasper",
"--enable-introspection=no"
system "make install"
end
end
|