class Pango < Formula desc "Framework for layout and rendering of i18n text" homepage "https://www.pango.org/" url "https://download.gnome.org/sources/pango/1.44/pango-1.44.7.tar.xz" sha256 "66a5b6cc13db73efed67b8e933584509f8ddb7b10a8a40c3850ca4a985ea1b1f" bottle do sha256 "38a8cab63ed7ea37fc5448b74dae21b7f935d4f4ea9c08b658f3553f20ec8f28" => :catalina sha256 "643284e68fcb4699572e7ab327a16ae3eb1c242527a96cb404cd98f14f22a893" => :mojave sha256 "42552a9d26655f006f2361c9a1773d56bd5c5cabcd4f6ad5861fec29bd27c2cc" => :high_sierra end head do url "https://gitlab.gnome.org/GNOME/pango.git" end depends_on "gobject-introspection" => :build depends_on "meson" => :build depends_on "ninja" => :build depends_on "pkg-config" => :build depends_on "cairo" depends_on "fontconfig" depends_on "fribidi" depends_on "glib" depends_on "harfbuzz" def install mkdir "build" do system "meson", "--prefix=#{prefix}", "-Ddefault_library=both", "-Dintrospection=true", "-Duse_fontconfig=true", ".." system "ninja", "-v" system "ninja", "install", "-v" end end test do system "#{bin}/pango-view", "--version" (testpath/"test.c").write <<~EOS #include int main(int argc, char *argv[]) { PangoFontMap *fontmap; int n_families; PangoFontFamily **families; fontmap = pango_cairo_font_map_get_default(); pango_font_map_list_families (fontmap, &families, &n_families); g_free(families); return 0; } EOS cairo = Formula["cairo"] fontconfig = Formula["fontconfig"] freetype = Formula["freetype"] gettext = Formula["gettext"] glib = Formula["glib"] harfbuzz = Formula["harfbuzz"] libpng = Formula["libpng"] pixman = Formula["pixman"] flags = %W[ -I#{cairo.opt_include}/cairo -I#{fontconfig.opt_include} -I#{freetype.opt_include}/freetype2 -I#{gettext.opt_include} -I#{glib.opt_include}/glib-2.0 -I#{glib.opt_lib}/glib-2.0/include -I#{harfbuzz.opt_include}/harfbuzz -I#{include}/pango-1.0 -I#{libpng.opt_include}/libpng16 -I#{pixman.opt_include}/pixman-1 -D_REENTRANT -L#{cairo.opt_lib} -L#{gettext.opt_lib} -L#{glib.opt_lib} -L#{lib} -lcairo -lglib-2.0 -lgobject-2.0 -lintl -lpango-1.0 -lpangocairo-1.0 ] system ENV.cc, "test.c", "-o", "test", *flags system "./test" end end