47 lines
1.7 KiB
Ruby
47 lines
1.7 KiB
Ruby
require 'formula'
|
|
|
|
class Gtkx3 < Formula
|
|
homepage 'http://gtk.org/'
|
|
url 'http://ftp.gnome.org/pub/gnome/sources/gtk+/3.12/gtk+-3.12.1.tar.xz'
|
|
sha256 '719aae5fdb560f64cadb7e968c8c85c0823664de890c9f765ff4c0efeb0277cd'
|
|
|
|
bottle do
|
|
sha1 "89dc1b403bd64be6ab61321d3b13c090c6244dd7" => :mavericks
|
|
sha1 "81a756c19cd6461a3dc1c0a906b1e7a79f349172" => :mountain_lion
|
|
sha1 "1a0a9f4166ec0392d43f5cf991d6cd87b63dcec1" => :lion
|
|
end
|
|
|
|
depends_on :x11 => '2.5' # needs XInput2, introduced in libXi 1.3
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'glib'
|
|
depends_on 'jpeg'
|
|
depends_on 'libtiff'
|
|
depends_on 'gdk-pixbuf'
|
|
depends_on 'pango'
|
|
depends_on 'cairo'
|
|
depends_on 'jasper' => :optional
|
|
depends_on 'atk'
|
|
depends_on 'at-spi2-atk'
|
|
depends_on 'gobject-introspection'
|
|
|
|
def install
|
|
# gtk-update-icon-cache is used during installation, and
|
|
# we don't want to add a dependency on gtk+2 just for this.
|
|
inreplace %w[ gtk/makefile.msc.in
|
|
demos/gtk-demo/Makefile.in
|
|
demos/widget-factory/Makefile.in ],
|
|
/gtk-update-icon-cache --(force|ignore-theme-index)/,
|
|
"#{buildpath}/gtk/\\0"
|
|
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--disable-glibtest",
|
|
"--enable-introspection=yes",
|
|
"--enable-x11-backend",
|
|
"--disable-schemas-compile"
|
|
system "make install"
|
|
# Prevent a conflict between this and Gtk+2
|
|
mv bin/'gtk-update-icon-cache', bin/'gtk3-update-icon-cache'
|
|
end
|
|
end
|