class Gtkx3 < Formula desc "Toolkit for creating graphical user interfaces" homepage "https://gtk.org/" url "https://download.gnome.org/sources/gtk+/3.24/gtk+-3.24.9.tar.xz" sha256 "577eb0270d9adf2eb2aa4b03f9c7873fadb20cf265194d0139570f738493e635" bottle do sha256 "ac7f05742fa8058473e83658b88b037c3874009ffb4961410a3a31e271b61824" => :mojave sha256 "b42e19853420f4b32a688c556f7cc26c4a4d1658f91b81a2f0c1f44230e13490" => :high_sierra sha256 "e1c6700e09e739477dfc8a9d1f72d3ddb4647ace643752b1eeb1b61024adba99" => :sierra end depends_on "autoconf" => :build depends_on "automake" => :build depends_on "gobject-introspection" => :build depends_on "libtool" => :build depends_on "pkg-config" => :build depends_on "atk" depends_on "gdk-pixbuf" depends_on "glib" depends_on "gsettings-desktop-schemas" depends_on "hicolor-icon-theme" depends_on "libepoxy" depends_on "pango" def install args = %W[ --enable-debug=minimal --disable-dependency-tracking --prefix=#{prefix} --disable-glibtest --enable-introspection=yes --disable-schemas-compile --enable-quartz-backend --disable-x11-backend ] system "autoreconf", "-fi" 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 #include 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