54 lines
1.5 KiB
Ruby
54 lines
1.5 KiB
Ruby
require 'formula'
|
|
|
|
class Gtkx3 < Formula
|
|
homepage 'http://gtk.org/'
|
|
url 'http://ftp.gnome.org/pub/gnome/sources/gtk+/3.14/gtk+-3.14.1.tar.xz'
|
|
sha256 '7e86eb7c8acc18524d7758ca2340b723ddeee1d0cd2cadd56de5a13322770a52'
|
|
|
|
bottle do
|
|
sha1 "f86088908060d19c73afe2883dea0d7f2b9db7f7" => :mavericks
|
|
sha1 "8cb0138bbfee3942db106f413c3ed84c7d431e7e" => :mountain_lion
|
|
sha1 "f14082ff43736ec1b5dfa96fff9c64f493207625" => :lion
|
|
end
|
|
|
|
depends_on :x11 => ['2.5', :recommended] # 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'
|
|
depends_on 'gsettings-desktop-schemas' => :recommended
|
|
|
|
def install
|
|
|
|
args = %W[
|
|
--disable-debug
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
--disable-glibtest
|
|
--enable-introspection=yes
|
|
--disable-schemas-compile
|
|
]
|
|
|
|
if build.without? "x11"
|
|
args << "--enable-quartz-backend" << "--enable-quartz-relocation"
|
|
else
|
|
args << "--enable-x11-backend"
|
|
end
|
|
|
|
system "./configure", *args
|
|
system "make install"
|
|
# Prevent a conflict between this and Gtk+2
|
|
mv bin/'gtk-update-icon-cache', bin/'gtk3-update-icon-cache'
|
|
end
|
|
|
|
def post_install
|
|
system "#{Formula["glib"].opt_bin}/glib-compile-schemas", "#{HOMEBREW_PREFIX}/share/glib-2.0/schemas"
|
|
end
|
|
end
|