class Netcdf < Formula desc "Libraries and data formats for array-oriented scientific data" homepage "https://www.unidata.ucar.edu/software/netcdf" url "ftp://ftp.unidata.ucar.edu/pub/netcdf/netcdf-4.4.1.1.tar.gz" mirror "https://www.gfd-dennou.org/library/netcdf/unidata-mirror/netcdf-4.4.1.1.tar.gz" sha256 "4d44c6f4d02a8faf10ea619bfe1ba8224cd993024f4da12988c7465f663c8cae" revision 6 bottle do sha256 "b76a81f391da481088359103122bc86e003405b2abfe88da3edc4eddf430b3e8" => :high_sierra sha256 "822e3ee88e46b7af29dd228d8739e8b409feb574279ba99018ed8e8f38b0ca73" => :sierra sha256 "987301f908676c27ff6a8e55b0c6b126ffe79e39ecb8bd074b6218d5aa131a93" => :el_capitan sha256 "8a52314ee59ceab2c182035265de853a88deefda445132d9feaf0f3c4f426943" => :yosemite end depends_on "cmake" => :build depends_on "hdf5" depends_on :fortran resource "cxx" do url "https://github.com/Unidata/netcdf-cxx4/archive/v4.3.0.tar.gz" sha256 "25da1c97d7a01bc4cee34121c32909872edd38404589c0427fefa1301743f18f" end resource "cxx-compat" do url "https://www.unidata.ucar.edu/downloads/netcdf/ftp/netcdf-cxx-4.2.tar.gz" mirror "https://www.gfd-dennou.org/arch/netcdf/unidata-mirror/netcdf-cxx-4.2.tar.gz" sha256 "95ed6ab49a0ee001255eac4e44aacb5ca4ea96ba850c08337a3e4c9a0872ccd1" end resource "fortran" do url "ftp://ftp.unidata.ucar.edu/pub/netcdf/netcdf-fortran-4.4.4.tar.gz" mirror "https://www.gfd-dennou.org/arch/netcdf/unidata-mirror/netcdf-fortran-4.4.4.tar.gz" sha256 "b2d395175f8d283e68c8be516e231a96b191ade67ad0caafaf7fa01b1e6b5d75" end def install ENV.deparallelize common_args = std_cmake_args << "-DBUILD_SHARED_LIBS=ON" common_args << "-DBUILD_TESTING=OFF" mkdir "build" do args = common_args.dup args << "-DENABLE_TESTS=OFF" args << "-DNC_EXTRA_DEPS=-lmpi" if Tab.for_name("hdf5").with? "mpi" args << "-DENABLE_DAP_AUTH_TESTS=OFF" << "-DENABLE_NETCDF_4=ON" << "-DENABLE_DOXYGEN=OFF" system "cmake", "..", *args system "make" system "make", "install" end # Add newly created installation to paths so that binding libraries can # find the core libs. args = common_args.dup << "-DNETCDF_C_LIBRARY=#{lib}" cxx_args = args.dup cxx_args << "-DNCXX_ENABLE_TESTS=OFF" resource("cxx").stage do mkdir "build-cxx" do system "cmake", "..", *cxx_args system "make" system "make", "install" end end fortran_args = args.dup fortran_args << "-DENABLE_TESTS=OFF" resource("fortran").stage do mkdir "build-fortran" do system "cmake", "..", *fortran_args system "make" system "make", "install" end end ENV.prepend "CPPFLAGS", "-I#{include}" ENV.prepend "LDFLAGS", "-L#{lib}" resource("cxx-compat").stage do system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make" system "make", "install" end # SIP causes system Python not to play nicely with @rpath %w[libnetcdf-cxx4.dylib libnetcdf_c++.dylib].each do |f| macho = MachO.open("#{lib}/#{f}") macho.change_dylib("@rpath/libnetcdf.11.dylib", "#{lib}/libnetcdf.11.dylib") macho.write! end end test do (testpath/"test.c").write <<-EOS.undent #include #include "netcdf_meta.h" int main() { printf(NC_VERSION); return 0; } EOS system ENV.cc, "test.c", "-L#{lib}", "-I#{include}", "-lnetcdf", "-o", "test" assert_equal `./test`, version.to_s ENV.fortran (testpath/"test.f90").write <<-EOS.undent program test use netcdf integer :: ncid, varid, dimids(2) integer :: dat(2,2) = reshape([1, 2, 3, 4], [2, 2]) call check( nf90_create("test.nc", NF90_CLOBBER, ncid) ) call check( nf90_def_dim(ncid, "x", 2, dimids(2)) ) call check( nf90_def_dim(ncid, "y", 2, dimids(1)) ) call check( nf90_def_var(ncid, "data", NF90_INT, dimids, varid) ) call check( nf90_enddef(ncid) ) call check( nf90_put_var(ncid, varid, dat) ) call check( nf90_close(ncid) ) contains subroutine check(status) integer, intent(in) :: status if (status /= nf90_noerr) call abort end subroutine check end program test EOS system ENV.fc, "test.f90", "-L#{lib}", "-I#{include}", "-lnetcdff", "-o", "testf" system "./testf" end end