89 lines
2.8 KiB
Ruby
89 lines
2.8 KiB
Ruby
class Hdf5 < 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.10/hdf5-1.10.6/src/hdf5-1.10.6.tar.bz2"
|
|
sha256 "09d6301901685201bb272a73e21c98f2bf7e044765107200b01089104a47c3bd"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "9ece0ebb705a669c6c74b1305631077d9bbbd625c7ed67c0bb4d3b2b3a31dc88" => :catalina
|
|
sha256 "ae200d2122b45c5a08c3f1b8d2d141eac3fbe362c3f330f81003146e81c0fef5" => :mojave
|
|
sha256 "1b9703ab1422ac13493673ea56d9d7fce8ed678751a666f3e0384b9ba786d028" => :high_sierra
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "gcc" # for gfortran
|
|
depends_on "szip"
|
|
uses_from_macos "zlib"
|
|
|
|
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}"
|
|
|
|
system "autoreconf", "-fiv"
|
|
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--disable-silent-rules
|
|
--prefix=#{prefix}
|
|
--with-szlib=#{Formula["szip"].opt_prefix}
|
|
--enable-build-mode=production
|
|
--enable-fortran
|
|
--enable-cxx
|
|
]
|
|
|
|
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}/h5cc", "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}/h5fc", "test.f90"
|
|
assert_equal version.to_s, shell_output("./a.out").chomp
|
|
end
|
|
end
|