class Gmsh < Formula desc "3D finite element grid generator with CAD engine" homepage "https://gmsh.info/" url "https://gmsh.info/src/gmsh-3.0.6-source.tgz" sha256 "9700bcc440d7a6b16a49cbfcdcdc31db33efe60e1f5113774316b6fa4186987b" head "https://gitlab.onelab.info/gmsh/gmsh.git" bottle do cellar :any sha256 "e0dd6429f73cea89717a9a492f113fa31913025910acf7d0552ed4d3f1b6c8d7" => :high_sierra sha256 "f45b4752c85d4fce38cabdc24287632eebf2840d039195cf603be0605c9649d2" => :sierra sha256 "464a7fff7dd8a269456c72931162291981b77921886858fdf9878c7231a714d0" => :el_capitan end option "with-oce", "Build with oce support (conflicts with opencascade)" option "with-opencascade", "Build with opencascade support (conflicts with oce)" depends_on "cmake" => :build depends_on :fortran depends_on :mpi => [:cc, :cxx, :f90] depends_on "homebrew/science/oce" => :optional depends_on "homebrew/science/opencascade" => :optional depends_on "fltk" => :optional depends_on "cairo" if build.with? "fltk" if build.with?("opencascade") && build.with?("oce") odie "gmsh: '--with-opencascade' and '--with-oce' conflict." end def install args = std_cmake_args + %W[ -DENABLE_OS_SPECIFIC_INSTALL=0 -DGMSH_BIN=#{bin} -DGMSH_LIB=#{lib} -DGMSH_DOC=#{pkgshare}/gmsh -DGMSH_MAN=#{man} -DENABLE_BUILD_LIB=ON -DENABLE_BUILD_SHARED=ON -DENABLE_NATIVE_FILE_CHOOSER=ON -DENABLE_PETSC=OFF -DENABLE_SLEPC=OFF ] if build.with? "oce" ENV["CASROOT"] = Formula["oce"].opt_prefix args << "-DENABLE_OCC=ON" elsif build.with? "opencascade" ENV["CASROOT"] = Formula["opencascade"].opt_prefix args << "-DENABLE_OCC=ON" else args << "-DENABLE_OCC=OFF" end args << "-DENABLE_FLTK=OFF" if build.without? "fltk" mkdir "build" do system "cmake", "..", *args system "make" system "make", "install" # Move onelab.py into libexec instead of bin mkdir_p libexec mv bin/"onelab.py", libexec end end def caveats "To use onelab.py set your PYTHONDIR to #{libexec}" end test do system "#{bin}/gmsh", "#{share}/doc/gmsh/tutorial/t1.geo", "-parse_and_exit" end end