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.18/geocode-glib-3.18.2.tar.xz" sha256 "95b11ef2697ac5dbb2f397e7117e08e157b2168624c71507656928095012494e" bottle do sha256 "dad6f3fbbb15e9964b4d754ce82de4466c3f3079f8d1686b96230c01fb2e914b" => :el_capitan sha256 "5f793b1eb08cdfa39596edf4adf9ee9fccc0ff7827ba9461dda0a0c53dcf89e2" => :yosemite sha256 "5c4ac97212c4ba832658efd625e182d1574569280b02975772a7b07413dd169a" => :mavericks end depends_on "pkg-config" => :build depends_on "gtk+3" depends_on "json-glib" depends_on "libsoup" depends_on "gobject-introspection" 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.undent #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 = (ENV.cflags || "").split + (ENV.cppflags || "").split + (ENV.ldflags || "").split 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