114 lines
3.7 KiB
Ruby
114 lines
3.7 KiB
Ruby
class Hdf5Mpi < Formula
|
|
desc "File format designed to store large amounts of data"
|
|
homepage "https://www.hdfgroup.org/HDF5"
|
|
url "https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-1.12/hdf5-1.12.1/src/hdf5-1.12.1.tar.bz2"
|
|
sha256 "aaf9f532b3eda83d3d3adc9f8b40a9b763152218fa45349c3bc77502ca1f8f1c"
|
|
license "BSD-3-Clause"
|
|
|
|
livecheck do
|
|
formula "hdf5"
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_monterey: "d63bf74a6027d6a62602b844f93721a77fcfc0a6f11ea1d8ae013290ec29f88e"
|
|
sha256 cellar: :any, arm64_big_sur: "72ec20ce7203674eeb2e5b3477eed01c97c948f46a113f979570f53750505b5a"
|
|
sha256 cellar: :any, monterey: "443448511936e1f62597deb3a59408550d1be9d7158d29ac710a95fc8819ab7b"
|
|
sha256 cellar: :any, big_sur: "43acfcf1924cfdaede8087ab4e3e6dbbb1d9926da8dfd53d0b00484b843284f1"
|
|
sha256 cellar: :any, catalina: "712c156c2c7d729763eec361d8b43c6c719ecfc66edddaf6e1f17357acad25de"
|
|
sha256 cellar: :any, mojave: "0bb94bd58813ee1f3176175cb9278ca28bf70dd13e134cf5b422ff5f17eee992"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "a451afc0161ef8f76cf77af609f35da050679701d64ffa9e1aac5c73a4ba5762"
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "gcc" # for gfortran
|
|
depends_on "open-mpi"
|
|
depends_on "szip"
|
|
|
|
uses_from_macos "zlib"
|
|
|
|
conflicts_with "hdf5", because: "hdf5-mpi is a variant of hdf5, one can only use one or the other"
|
|
|
|
def install
|
|
inreplace %w[c++/src/h5c++.in fortran/src/h5fc.in bin/h5cc.in],
|
|
"${libdir}/libhdf5.settings",
|
|
"#{pkgshare}/libhdf5.settings"
|
|
|
|
inreplace "src/Makefile.am",
|
|
"settingsdir=$(libdir)",
|
|
"settingsdir=#{pkgshare}"
|
|
|
|
if OS.mac?
|
|
system "autoreconf", "-fiv"
|
|
else
|
|
|
|
system "./autogen.sh"
|
|
end
|
|
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--disable-silent-rules
|
|
--prefix=#{prefix}
|
|
--with-szlib=#{Formula["szip"].opt_prefix}
|
|
--enable-build-mode=production
|
|
--enable-fortran
|
|
--enable-parallel
|
|
CC=mpicc
|
|
CXX=mpic++
|
|
FC=mpifort
|
|
F77=mpif77
|
|
F90=mpif90
|
|
]
|
|
|
|
args << "--with-zlib=#{Formula["zlib"].opt_prefix}" if OS.linux?
|
|
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
#include <stdio.h>
|
|
#include "hdf5.h"
|
|
int main()
|
|
{
|
|
printf("%d.%d.%d\\n", H5_VERS_MAJOR, H5_VERS_MINOR, H5_VERS_RELEASE);
|
|
return 0;
|
|
}
|
|
EOS
|
|
system "#{bin}/h5pcc", "test.c"
|
|
assert_equal version.to_s, shell_output("./a.out").chomp
|
|
|
|
(testpath/"test.f90").write <<~EOS
|
|
use hdf5
|
|
integer(hid_t) :: f, dspace, dset
|
|
integer(hsize_t), dimension(2) :: dims = [2, 2]
|
|
integer :: error = 0, major, minor, rel
|
|
|
|
call h5open_f (error)
|
|
if (error /= 0) call abort
|
|
call h5fcreate_f ("test.h5", H5F_ACC_TRUNC_F, f, error)
|
|
if (error /= 0) call abort
|
|
call h5screate_simple_f (2, dims, dspace, error)
|
|
if (error /= 0) call abort
|
|
call h5dcreate_f (f, "data", H5T_NATIVE_INTEGER, dspace, dset, error)
|
|
if (error /= 0) call abort
|
|
call h5dclose_f (dset, error)
|
|
if (error /= 0) call abort
|
|
call h5sclose_f (dspace, error)
|
|
if (error /= 0) call abort
|
|
call h5fclose_f (f, error)
|
|
if (error /= 0) call abort
|
|
call h5close_f (error)
|
|
if (error /= 0) call abort
|
|
CALL h5get_libversion_f (major, minor, rel, error)
|
|
if (error /= 0) call abort
|
|
write (*,"(I0,'.',I0,'.',I0)") major, minor, rel
|
|
end
|
|
EOS
|
|
system "#{bin}/h5pfc", "test.f90"
|
|
assert_equal version.to_s, shell_output("./a.out").chomp
|
|
end
|
|
end
|