From a333dbf3609cea5d59378db94c795118ae45aecd Mon Sep 17 00:00:00 2001 From: Michka Popoff Date: Tue, 20 Aug 2024 23:52:10 +0200 Subject: [PATCH] vtk: revision bump (hdf5 1.14.4) --- Formula/v/vtk.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Formula/v/vtk.rb b/Formula/v/vtk.rb index 2e3ec4574047..0e7d144374ad 100644 --- a/Formula/v/vtk.rb +++ b/Formula/v/vtk.rb @@ -4,7 +4,7 @@ class Vtk < Formula url "https://www.vtk.org/files/release/9.3/VTK-9.3.1.tar.gz" sha256 "8354ec084ea0d2dc3d23dbe4243823c4bfc270382d0ce8d658939fd50061cab8" license "BSD-3-Clause" - revision 1 + revision 2 head "https://gitlab.kitware.com/vtk/vtk.git", branch: "master" bottle do @@ -118,6 +118,10 @@ def install # https://github.com/Homebrew/linuxbrew-core/pull/21654#issuecomment-738549701 args << "-DOpenGL_GL_PREFERENCE=LEGACY" + # Help vtk find hdf5 1.14.4.x + # https://github.com/Homebrew/homebrew-core/pull/170959#issuecomment-2295288143 + args << "-DHDF5_INCLUDE_DIR=#{Formula["hdf5"].opt_include}" + args << "-DVTK_USE_COCOA:BOOL=ON" if OS.mac? system "cmake", "-S", ".", "-B", "build", *args, *std_cmake_args