108 lines
3.8 KiB
Ruby
108 lines
3.8 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.1/VTK-8.1.2.tar.gz"
|
|
sha256 "0995fb36857dd76ccfb8bb07350c214d9f9099e80b1e66b4a8909311f24ff0db"
|
|
revision 2
|
|
head "https://github.com/Kitware/VTK.git"
|
|
|
|
bottle do
|
|
sha256 "acd90fab027fe1d8c3fee002e9d6ae53d37cb193867e6760349a95f4cc61c6ed" => :mojave
|
|
sha256 "9e4cd8949c2562df2ead05265f9e192b270d6b5bfa66c58cb2b235ff32ec1a4f" => :high_sierra
|
|
sha256 "73986d08c7dcec7cdb5122352e84b4ca7b7c2eb4f1e69ccd4d1a5624c9d5808b" => :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
|
|
python_executable = `which python3`.strip
|
|
python_prefix = `#{python_executable} -c 'import sys;print(sys.prefix)'`.chomp
|
|
python_include = `#{python_executable} -c 'from distutils import sysconfig;print(sysconfig.get_python_inc(True))'`.chomp
|
|
python_version = "python" + `#{python_executable} -c 'import sys;print(sys.version[:3])'`.chomp
|
|
py_site_packages = "#{lib}/#{python_version}/site-packages"
|
|
|
|
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
|
|
-DPYTHON_EXECUTABLE='#{python_executable}'
|
|
-DPYTHON_INCLUDE_DIR='#{python_include}'
|
|
-DVTK_INSTALL_PYTHON_MODULE_DIR='#{py_site_packages}/'
|
|
-DVTK_QT_VERSION:STRING=5
|
|
-DVTK_Group_Qt=ON
|
|
-DVTK_WRAP_PYTHON_SIP=ON
|
|
-DSIP_PYQT_DIR='#{Formula["pyqt5"].opt_share}/sip'
|
|
]
|
|
|
|
# CMake picks up the system's python dylib, even if we have a brewed one.
|
|
if File.exist? "#{python_prefix}/Python"
|
|
args << "-DPYTHON_LIBRARY='#{python_prefix}/Python'"
|
|
elsif File.exist? "#{python_prefix}/lib/lib#{python_version}.a"
|
|
args << "-DPYTHON_LIBRARY='#{python_prefix}/lib/lib#{python_version}.a'"
|
|
elsif File.exist? "#{python_prefix}/lib/lib#{python_version}.dylib"
|
|
args << "-DPYTHON_LIBRARY='#{python_prefix}/lib/lib#{python_version}.dylib'"
|
|
else
|
|
odie "No libpythonX.Y.{dylib|a} file found!"
|
|
end
|
|
|
|
mkdir "build" do
|
|
system "cmake", "..", *args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
# Avoid hard-coding Python's Cellar paths
|
|
inreplace Dir["#{lib}/cmake/**/vtkPython.cmake"].first,
|
|
Formula["python"].prefix.realpath,
|
|
Formula["python"].opt_prefix
|
|
|
|
# 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
|