class Gwyddion < Formula desc "Scanning Probe Microscopy visualization and analysis tool" homepage "http://gwyddion.net/" url "http://gwyddion.net/download/2.53/gwyddion-2.53.tar.gz" sha256 "d142569adc4d523e51ca53cbff19414576facb774e5f4dad88b6ec475972f081" revision 2 bottle do sha256 "dbccea794476114bb4168aec4b0d5a896bc3246f133e2eb681fe3ecf5186817b" => :mojave sha256 "bcf497148c882f37cf36d1a52224d8b612c6ac9c40429fd42956ca062565c91f" => :high_sierra sha256 "82ecd6b14b1f2261a58844a3fe23563b1ec6d66dcdb292d100c28d3d5c576d34" => :sierra end depends_on "pkg-config" => :build depends_on "fftw" depends_on "gtk+" depends_on "gtk-mac-integration" depends_on "gtkglext" depends_on "gtksourceview" depends_on "libxml2" depends_on "minizip" depends_on "pygtk" depends_on "python@2" # Fixes problem with finding resource files in version 2.53. # patch do url "http://gwyddion.net/download/2.53/gwyddion-2.53-ensure-osx-basedir.patch" sha256 "17e5282d7add1e1af0d530885dbe501e29869340ba6d77879bf67e7a9f860990" end def install system "./configure", "--disable-dependency-tracking", "--disable-desktop-file-update", "--prefix=#{prefix}", "--with-html-dir=#{doc}" system "make", "install" end test do system "#{bin}/gwyddion", "--version" (testpath/"test.c").write <<~EOS #include int main(int argc, char *argv[]) { const gchar *string = gwy_version_string(); return 0; } EOS atk = Formula["atk"] cairo = Formula["cairo"] fftw = Formula["fftw"] fontconfig = Formula["fontconfig"] freetype = Formula["freetype"] gdk_pixbuf = Formula["gdk-pixbuf"] gettext = Formula["gettext"] glib = Formula["glib"] gtkx = Formula["gtk+"] gtkglext = Formula["gtkglext"] harfbuzz = Formula["harfbuzz"] libpng = Formula["libpng"] pango = Formula["pango"] pixman = Formula["pixman"] flags = %W[ -I#{atk.opt_include}/atk-1.0 -I#{cairo.opt_include}/cairo -I#{fftw.opt_include} -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}/glib-2.0 -I#{glib.opt_lib}/glib-2.0/include -I#{gtkglext.opt_include}/gtkglext-1.0 -I#{gtkglext.opt_lib}/gtkglext-1.0/include -I#{gtkx.opt_include}/gtk-2.0 -I#{gtkx.opt_lib}/gtk-2.0/include -I#{harfbuzz.opt_include}/harfbuzz -I#{include}/gwyddion -I#{libpng.opt_include}/libpng16 -I#{lib}/gwyddion/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#{fftw.opt_lib} -L#{fontconfig.opt_lib} -L#{freetype.opt_lib} -L#{gdk_pixbuf.opt_lib} -L#{gettext.opt_lib} -L#{glib.opt_lib} -L#{gtkglext.opt_lib} -L#{gtkx.opt_lib} -L#{lib} -L#{pango.opt_lib} -latk-1.0 -lcairo -lfftw3 -lfontconfig -lfreetype -lgdk-quartz-2.0 -lgdk_pixbuf-2.0 -lgdkglext-quartz-1.0 -lgio-2.0 -lglib-2.0 -lgmodule-2.0 -lgobject-2.0 -lgtk-quartz-2.0 -lgtkglext-quartz-1.0 -lgwyapp2 -lgwyddion2 -lgwydgets2 -lgwydraw2 -lgwymodule2 -lgwyprocess2 -lintl -lpango-1.0 -lpangocairo-1.0 -lpangoft2-1.0 -framework AppKit -framework OpenGL ] system ENV.cc, "test.c", "-o", "test", *flags system "./test" end end