blob: ad2a8f30e11300a714bddd41ad83c5a6929c9c66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
require 'formula'
class GdkPixbuf < Formula
homepage 'http://gtk.org'
url 'http://ftp.gnome.org/pub/GNOME/sources/gdk-pixbuf/2.24/gdk-pixbuf-2.24.0.tar.bz2'
sha256 '38d2630314e6d91976bffd833236f84fefa440a9038f86dc422820a39f2e3700'
depends_on 'glib'
depends_on 'jasper'
depends_on 'libtiff'
def install
args = ["--prefix=#{prefix}",
"--disable-dependency-tracking",
"--disable-maintainer-mode",
"--enable-debug=no",
"--with-libjasper",
"--enable-introspection=no",
"--disable-Bsymbolic",
"--without-gdiplus"]
system "./configure", *args
system "make"
system "make install"
end
end
|