81 lines
2.8 KiB
Ruby
81 lines
2.8 KiB
Ruby
class Adios2 < Formula
|
|
desc "Next generation of ADIOS developed in the Exascale Computing Program"
|
|
homepage "https://adios2.readthedocs.io"
|
|
url "https://github.com/ornladios/ADIOS2/archive/v2.7.1.tar.gz"
|
|
sha256 "c8e237fd51f49d8a62a0660db12b72ea5067512aa7970f3fcf80b70e3f87ca3e"
|
|
license "Apache-2.0"
|
|
head "https://github.com/ornladios/ADIOS2.git", branch: "master"
|
|
|
|
bottle do
|
|
sha256 arm64_big_sur: "45f03b63524dd098dc18e621e21542a5431a5d3858c3e65f97c769a508c3e88c"
|
|
sha256 big_sur: "ca61ed8e82057e3b952b2125800e1b8b3c42c2ecac2abcc53461d27e987af6cc"
|
|
sha256 catalina: "191c4f460c24c7c49c77f6df9140278ad81ba408de2790cb54b1b8f67bad298b"
|
|
sha256 mojave: "9fad0bbce1586a831472610367548ac4007d12ae9510b3bc10bc374cb54c2abe"
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "gcc" => :build
|
|
depends_on "c-blosc"
|
|
depends_on "libfabric"
|
|
depends_on "libpng"
|
|
depends_on "mpi4py"
|
|
depends_on "numpy"
|
|
depends_on "open-mpi"
|
|
depends_on "python@3.9"
|
|
depends_on "zeromq"
|
|
uses_from_macos "bzip2"
|
|
|
|
def install
|
|
# fix `include/adios2/common/ADIOSConfig.h` file audit failure
|
|
inreplace "source/adios2/common/ADIOSConfig.h.in" do |s|
|
|
s.gsub! ": @CMAKE_C_COMPILER@", ": /usr/bin/clang"
|
|
s.gsub! ": @CMAKE_CXX_COMPILER@", ": /usr/bin/clang++"
|
|
end
|
|
|
|
args = std_cmake_args + %W[
|
|
-DADIOS2_USE_Blosc=ON
|
|
-DADIOS2_USE_BZip2=ON
|
|
-DADIOS2_USE_DataSpaces=OFF
|
|
-DADIOS2_USE_Fortran=ON
|
|
-DADIOS2_USE_HDF5=OFF
|
|
-DADIOS2_USE_IME=OFF
|
|
-DADIOS2_USE_MGARD=OFF
|
|
-DADIOS2_USE_MPI=ON
|
|
-DADIOS2_USE_PNG=ON
|
|
-DADIOS2_USE_Python=ON
|
|
-DADIOS2_USE_SZ=OFF
|
|
-DADIOS2_USE_ZeroMQ=ON
|
|
-DADIOS2_USE_ZFP=OFF
|
|
-DCMAKE_DISABLE_FIND_PACKAGE_BISON=TRUE
|
|
-DCMAKE_DISABLE_FIND_PACKAGE_CrayDRC=TRUE
|
|
-DCMAKE_DISABLE_FIND_PACKAGE_FLEX=TRUE
|
|
-DCMAKE_DISABLE_FIND_PACKAGE_LibFFI=TRUE
|
|
-DCMAKE_DISABLE_FIND_PACKAGE_NVSTREAM=TRUE
|
|
-DPYTHON_EXECUTABLE=#{Formula["python@3.9"].opt_bin}/python3
|
|
-DADIOS2_BUILD_TESTING=OFF
|
|
-DADIOS2_BUILD_EXAMPLES=OFF
|
|
]
|
|
mkdir "build" do
|
|
system "cmake", "..", *args
|
|
system "make", "install"
|
|
rm_rf Dir[prefix/"bin/bp4dbg"] # https://github.com/ornladios/ADIOS2/pull/1846
|
|
end
|
|
|
|
(pkgshare/"test").install "examples/hello/bpWriter/helloBPWriter.cpp"
|
|
(pkgshare/"test").install "examples/hello/bpWriter/helloBPWriter.py"
|
|
end
|
|
|
|
test do
|
|
adios2_config_flags = `adios2-config --cxx`.chomp.split
|
|
system "mpic++",
|
|
(pkgshare/"test/helloBPWriter.cpp"),
|
|
*adios2_config_flags
|
|
system "./a.out"
|
|
assert_predicate testpath/"myVector_cpp.bp", :exist?
|
|
|
|
system Formula["python@3.9"].opt_bin/"python3", "-c", "import adios2"
|
|
system Formula["python@3.9"].opt_bin/"python3", (pkgshare/"test/helloBPWriter.py")
|
|
assert_predicate testpath/"npArray.bp", :exist?
|
|
end
|
|
end
|