class Amtk < Formula desc "Actions, Menus and Toolbars Kit for GNOME" homepage "https://wiki.gnome.org/Projects/Amtk" url "https://download.gnome.org/sources/amtk/5.0/amtk-5.0.1.tar.xz" sha256 "2d1cf4a4468655f93c90a2dde2e08b1ea0b3960c0aee04eb206c201d7849de27" revision 1 bottle do sha256 "9f33a4487787d124aedc94f4c19e59558d97782383100aa385c628d8f2148b6e" => :mojave sha256 "7698d596007d0d86b4ad672915cff4d1b6ec1fd2abcd931e3f5b7f17f40e196c" => :high_sierra sha256 "e3780ab44f49105445ff6e5f3cbf048f1e7572c1327068d92ba5d81de62f7ecf" => :sierra end depends_on "gobject-introspection" => :build depends_on "pkg-config" => :build depends_on "gtk+3" def install system "./configure", "--disable-dependency-tracking", "--disable-silent-rules", "--prefix=#{prefix}" system "make", "install" end test do (testpath/"test.c").write <<~EOS #include int main(int argc, char *argv[]) { amtk_init(); return 0; } EOS ENV.libxml2 atk = Formula["atk"] cairo = Formula["cairo"] fontconfig = Formula["fontconfig"] freetype = Formula["freetype"] gdk_pixbuf = Formula["gdk-pixbuf"] gettext = Formula["gettext"] glib = Formula["glib"] gtkx3 = Formula["gtk+3"] harfbuzz = Formula["harfbuzz"] libepoxy = Formula["libepoxy"] libpng = Formula["libpng"] pango = Formula["pango"] pcre = Formula["pcre"] pixman = Formula["pixman"] flags = (ENV.cflags || "").split + (ENV.cppflags || "").split + (ENV.ldflags || "").split 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#{gtkx3.opt_include}/gtk-3.0 -I#{harfbuzz.opt_include}/harfbuzz -I#{include}/amtk-5 -I#{libepoxy.opt_include} -I#{libpng.opt_include}/libpng16 -I#{pango.opt_include}/pango-1.0 -I#{pcre.opt_include} -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#{gtkx3.opt_lib} -L#{lib} -L#{pango.opt_lib} -latk-1.0 -lamtk-5.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