netCDF-Fortran-4.5.3-intel-compilers-2021.4.0.eb 807 B

12345678910111213141516171819202122232425
  1. name = 'netCDF-Fortran'
  2. version = '4.5.3'
  3. homepage = 'https://www.unidata.ucar.edu/software/netcdf/'
  4. description = """NetCDF (network Common Data Form) is a set of software libraries
  5. and machine-independent data formats that support the creation, access, and sharing of array-oriented
  6. scientific data."""
  7. toolchain = {'name': 'intel-compilers', 'version': '2021.4.0'}
  8. toolchainopts = {'unroll': True, 'pic': True}
  9. source_urls = ['https://github.com/Unidata/netcdf-fortran/archive/']
  10. sources = ['v%(version)s.tar.gz']
  11. checksums = ['c6da30c2fe7e4e614c1dff4124e857afbd45355c6798353eccfa60c0702b495a']
  12. builddependencies = [
  13. ('M4', '1.4.19'),
  14. ]
  15. dependencies = [('netCDF', '4.8.1')]
  16. # (too) parallel build fails, but single-core build is fairly quick anyway (~1min)
  17. parallel = 1
  18. moduleclass = 'data'