class Vte3 < Formula desc "Terminal emulator widget used by GNOME terminal" homepage "https://developer.gnome.org/vte/" url "https://download.gnome.org/sources/vte/0.56/vte-0.56.0.tar.xz" sha256 "5fab50e66b9d5bb7dfc6a1a9c334ed10d60b63f4a222f11281bba977ae11b7f0" bottle do sha256 "df4854e069da31cf5101f8def51909c82b1da67cf70d55fa32a828bc5798c267" => :mojave sha256 "dbf923efe48270116419af4639ff286b13ebc6f3e957fce4da3f50ee8f006758" => :high_sierra sha256 "6480ce66e768cb0f5e47ff752d52a0e35fb6a6303e485d2a7e92b968b952f2d9" => :sierra end depends_on "gobject-introspection" => :build depends_on "gtk-doc" => :build depends_on "intltool" => :build depends_on "pkg-config" => :build depends_on "gettext" depends_on "gnutls" depends_on "gtk+3" depends_on "pcre2" depends_on "vala" def install ENV["XML_CATALOG_FILES"] = "#{etc}/xml/catalog" args = [ "--disable-dependency-tracking", "--prefix=#{prefix}", "--disable-Bsymbolic", "--enable-introspection=yes", "--enable-gtk-doc", ] system "./configure", *args system "make", "install" end test do (testpath/"test.c").write <<~EOS #include int main(int argc, char *argv[]) { guint v = vte_get_major_version(); 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"] gnutls = Formula["gnutls"] gtkx3 = Formula["gtk+3"] libepoxy = Formula["libepoxy"] libpng = Formula["libpng"] libtasn1 = Formula["libtasn1"] nettle = Formula["nettle"] 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#{gnutls.opt_include} -I#{gtkx3.opt_include}/gtk-3.0 -I#{include}/vte-2.91 -I#{libepoxy.opt_include} -I#{libpng.opt_include}/libpng16 -I#{libtasn1.opt_include} -I#{nettle.opt_include} -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#{gnutls.opt_lib} -L#{gtkx3.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 -lgnutls -lgobject-2.0 -lgtk-3 -lintl -lpango-1.0 -lpangocairo-1.0 -lvte-2.91 -lz ] system ENV.cc, "test.c", "-o", "test", *flags system "./test" end end