homebrew-core/Formula/vtk.rb
2019-08-29 21:19:36 +02:00

90 lines
2.9 KiB
Ruby

class Vtk < Formula
desc "Toolkit for 3D computer graphics, image processing, and visualization"
homepage "https://www.vtk.org/"
url "https://www.vtk.org/files/release/8.2/VTK-8.2.0.tar.gz"
sha256 "34c3dc775261be5e45a8049155f7228b6bd668106c72a3c435d95730d17d57bb"
revision 2
head "https://github.com/Kitware/VTK.git"
bottle do
sha256 "198879d7b096a0783949664f76eb462db1b40ac0b6323ac064ae0f238a0dcedb" => :mojave
sha256 "8dc3e1b37f503b3230ba978a8900d705cd9856aec8930e3c7dee4f99522b5ac1" => :high_sierra
sha256 "8153de359561ed7a47248f99441d47fd09256f68be100cea06939219f9668637" => :sierra
end
depends_on "cmake" => :build
depends_on "boost"
depends_on "fontconfig"
depends_on "hdf5"
depends_on "jpeg"
depends_on "libpng"
depends_on "libtiff"
depends_on "netcdf"
depends_on "pyqt"
depends_on "python"
depends_on "qt"
def install
pyver = Language::Python.major_minor_version "python3"
py_prefix = Formula["python3"].opt_frameworks/"Python.framework/Versions/#{pyver}"
args = std_cmake_args + %W[
-DBUILD_SHARED_LIBS=ON
-DBUILD_TESTING=OFF
-DCMAKE_INSTALL_NAME_DIR:STRING=#{lib}
-DCMAKE_INSTALL_RPATH:STRING=#{lib}
-DModule_vtkInfovisBoost=ON
-DModule_vtkInfovisBoostGraphAlgorithms=ON
-DModule_vtkRenderingFreeTypeFontConfig=ON
-DVTK_REQUIRED_OBJCXX_FLAGS=''
-DVTK_USE_COCOA=ON
-DVTK_USE_SYSTEM_EXPAT=ON
-DVTK_USE_SYSTEM_HDF5=ON
-DVTK_USE_SYSTEM_JPEG=ON
-DVTK_USE_SYSTEM_LIBXML2=ON
-DVTK_USE_SYSTEM_NETCDF=ON
-DVTK_USE_SYSTEM_PNG=ON
-DVTK_USE_SYSTEM_TIFF=ON
-DVTK_USE_SYSTEM_ZLIB=ON
-DVTK_WRAP_PYTHON=ON
-DVTK_PYTHON_VERSION=3
-DPYTHON_EXECUTABLE=#{Formula["python"].opt_bin}/python3
-DPYTHON_INCLUDE_DIR=#{py_prefix}/include/python#{pyver}m
-DPYTHON_LIBRARY=#{py_prefix}/lib/libpython#{pyver}.dylib
-DVTK_PYTHON_SITE_PACKAGES_SUFFIX=#{lib}/python3/site-packages
-DVTK_QT_VERSION:STRING=5
-DVTK_Group_Qt=ON
-DVTK_WRAP_PYTHON_SIP=ON
-DSIP_PYQT_DIR='#{Formula["pyqt5"].opt_share}/sip'
]
mkdir "build" do
system "cmake", "..", *args
system "make"
system "make", "install"
end
# Avoid hard-coding HDF5's Cellar path
inreplace Dir["#{lib}/cmake/**/vtkhdf5.cmake"].first,
Formula["hdf5"].prefix.realpath,
Formula["hdf5"].opt_prefix
end
test do
vtk_include = Dir[opt_include/"vtk-*"].first
major, minor = vtk_include.match(/.*-(.*)$/)[1].split(".")
(testpath/"version.cpp").write <<~EOS
#include <vtkVersion.h>
#include <assert.h>
int main(int, char *[]) {
assert (vtkVersion::GetVTKMajorVersion()==#{major});
assert (vtkVersion::GetVTKMinorVersion()==#{minor});
return EXIT_SUCCESS;
}
EOS
system ENV.cxx, "-std=c++11", "version.cpp", "-I#{vtk_include}"
system "./a.out"
system "#{bin}/vtkpython", "-c", "exit()"
end
end