class GeocodeGlib < Formula desc "GNOME library for gecoding and reverse geocoding" homepage "https://developer.gnome.org/geocode-glib" url "https://download.gnome.org/sources/geocode-glib/3.24/geocode-glib-3.24.0.tar.xz" sha256 "19c1fef4fd89eb4bfe6decca45ac45a2eca9bb7933be560ce6c172194840c35e" revision 1 bottle do sha256 "1d31652721465573282224be5d8221fe96eccd107ed511bcc0d23a2d8604b0a6" => :mojave sha256 "780bb3b6c0a4254b86b7ea19aaa38b7aefd64d3e426bb0ecffd1bec2ca0e48ff" => :high_sierra sha256 "46f57b5d17d403eac2ac15a9d855cc97419c657d6956d41893f9f9ac02809354" => :sierra sha256 "58a18aaf640e1b4788876082272dee570c7b8c3bf459463ec72f14d10a8bfc59" => :el_capitan end depends_on "gobject-introspection" => :build depends_on "pkg-config" => :build depends_on "gtk+3" depends_on "json-glib" depends_on "libsoup" def install # forces use of gtk3-update-icon-cache instead of gtk-update-icon-cache. No bugreport should # be filed for this since it only occurs because Homebrew renames gtk+3's gtk-update-icon-cache # to gtk3-update-icon-cache in order to avoid a collision between gtk+ and gtk+3. inreplace "icons/Makefile.in", "gtk-update-icon-cache", "gtk3-update-icon-cache" system "./configure", "--disable-debug", "--disable-dependency-tracking", "--disable-silent-rules", "--prefix=#{prefix}" system "make", "install" # delete icon cache file -> create it post_install rm share/"icons/gnome/icon-theme.cache" end def post_install system "#{Formula["gtk+3"].opt_bin}/gtk3-update-icon-cache", "-f", "-t", "#{HOMEBREW_PREFIX}/share/icons/gnome" end test do (testpath/"test.c").write <<~EOS #include int main(int argc, char *argv[]) { GeocodeLocation *loc = geocode_location_new(1.0, 1.0, 1.0); return 0; } EOS gettext = Formula["gettext"] glib = Formula["glib"] flags = %W[ -I#{gettext.opt_include} -I#{glib.opt_include}/glib-2.0 -I#{glib.opt_lib}/glib-2.0/include -I#{include}/geocode-glib-1.0 -D_REENTRANT -L#{gettext.opt_lib} -L#{glib.opt_lib} -L#{lib} -lgeocode-glib -lgio-2.0 -lglib-2.0 -lgobject-2.0 -lintl ] system ENV.cc, "test.c", "-o", "test", *flags system "./test" end end