120 lines
3.6 KiB
Ruby
120 lines
3.6 KiB
Ruby
class Gtkx3 < Formula
|
|
desc "Toolkit for creating graphical user interfaces"
|
|
homepage "http://gtk.org/"
|
|
url "https://download.gnome.org/sources/gtk+/3.20/gtk+-3.20.9.tar.xz"
|
|
sha256 "83a609ba2f3424b5509e73967c49c67833af466d6f91081b24ee5c64fce6ac17"
|
|
|
|
bottle do
|
|
sha256 "845e8ffbba026568d58f2d1c1c5633be9c999acd0fb873013d07979b4fb732b7" => :sierra
|
|
sha256 "0725ecf53991ca4edbeeff32000aed2c7cb1be53553db1e9dc23c3ba90051efd" => :el_capitan
|
|
sha256 "bdab115ec793cdc543a7d9936f2689f2992a4a54e5e61728bff0c3d8413e7a7d" => :yosemite
|
|
sha256 "d73e0948f345c6ebdb95b20fadd3a673fd60fca34a51ae69cc7bd1f8ac5a25fe" => :mavericks
|
|
end
|
|
|
|
option :universal
|
|
option "with-quartz-relocation", "Build with quartz relocation support"
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "gdk-pixbuf"
|
|
depends_on "atk"
|
|
depends_on "gobject-introspection"
|
|
depends_on "libepoxy"
|
|
depends_on "pango"
|
|
depends_on "glib"
|
|
depends_on "hicolor-icon-theme"
|
|
depends_on "gsettings-desktop-schemas" => :recommended
|
|
depends_on "jasper" => :optional
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
|
|
args = %W[
|
|
--enable-debug=minimal
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
--disable-glibtest
|
|
--enable-introspection=yes
|
|
--disable-schemas-compile
|
|
--enable-quartz-backend
|
|
--disable-x11-backend
|
|
]
|
|
|
|
args << "--enable-quartz-relocation" if build.with?("quartz-relocation")
|
|
|
|
# TODO: Remove when it fails. See https://git.gnome.org/browse/gtk+/commit/?id=74bd3f3810133d44f333aa5f8d02ae3de19a6834
|
|
inreplace "gdk/quartz/gdkeventloop-quartz.c", "g_string_appendi", "g_string_append"
|
|
|
|
system "./configure", *args
|
|
# necessary to avoid gtk-update-icon-cache not being found during make install
|
|
bin.mkpath
|
|
ENV.prepend_path "PATH", bin
|
|
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
|
|
|
|
test do
|
|
(testpath/"test.c").write <<-EOS.undent
|
|
#include <gtk/gtk.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
gtk_disable_setlocale();
|
|
return 0;
|
|
}
|
|
EOS
|
|
atk = Formula["atk"]
|
|
cairo = Formula["cairo"]
|
|
fontconfig = Formula["fontconfig"]
|
|
freetype = Formula["freetype"]
|
|
gdk_pixbuf = Formula["gdk-pixbuf"]
|
|
gettext = Formula["gettext"]
|
|
glib = Formula["glib"]
|
|
libepoxy = Formula["libepoxy"]
|
|
libpng = Formula["libpng"]
|
|
pango = Formula["pango"]
|
|
pixman = Formula["pixman"]
|
|
flags = %W[
|
|
-I#{atk.opt_include}/atk-1.0
|
|
-I#{cairo.opt_include}/cairo
|
|
-I#{fontconfig.opt_include}
|
|
-I#{freetype.opt_include}/freetype2
|
|
-I#{gdk_pixbuf.opt_include}/gdk-pixbuf-2.0
|
|
-I#{gettext.opt_include}
|
|
-I#{glib.opt_include}/gio-unix-2.0/
|
|
-I#{glib.opt_include}/glib-2.0
|
|
-I#{glib.opt_lib}/glib-2.0/include
|
|
-I#{include}
|
|
-I#{include}/gtk-3.0
|
|
-I#{libepoxy.opt_include}
|
|
-I#{libpng.opt_include}/libpng16
|
|
-I#{pango.opt_include}/pango-1.0
|
|
-I#{pixman.opt_include}/pixman-1
|
|
-D_REENTRANT
|
|
-L#{atk.opt_lib}
|
|
-L#{cairo.opt_lib}
|
|
-L#{gdk_pixbuf.opt_lib}
|
|
-L#{gettext.opt_lib}
|
|
-L#{glib.opt_lib}
|
|
-L#{lib}
|
|
-L#{pango.opt_lib}
|
|
-latk-1.0
|
|
-lcairo
|
|
-lcairo-gobject
|
|
-lgdk-3
|
|
-lgdk_pixbuf-2.0
|
|
-lgio-2.0
|
|
-lglib-2.0
|
|
-lgobject-2.0
|
|
-lgtk-3
|
|
-lintl
|
|
-lpango-1.0
|
|
-lpangocairo-1.0
|
|
]
|
|
system ENV.cc, "test.c", "-o", "test", *flags
|
|
system "./test"
|
|
end
|
|
end
|