netCDF-4.6.1-foss-2017b.eb 928 B

12345678910111213141516171819202122232425262728293031323334
  1. name = 'netCDF'
  2. version = '4.6.1'
  3. homepage = 'http://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': 'foss', 'version': '2017b'}
  8. toolchainopts = {'pic': True, 'usempi': True}
  9. source_urls = ['https://github.com/Unidata/netcdf-c/archive/']
  10. sources = ['v%(version)s.tar.gz']
  11. checksums = ['a2fabf27c72a5ee746e3843e1debbaad37cd035767eaede2045371322211eebb']
  12. dependencies = [
  13. ('HDF5', '1.10.1'),
  14. ('cURL', '7.60.0'),
  15. ('Szip', '2.1.1'),
  16. ]
  17. builddependencies = [
  18. ('Autotools', '20180311'),
  19. ('CMake', '3.11.4'),
  20. ('Doxygen', '1.8.14'),
  21. ]
  22. # make sure both static and shared libs are built
  23. configopts = [
  24. "-DBUILD_SHARED_LIBS=OFF ",
  25. "-DBUILD_SHARED_LIBS=ON ",
  26. ]
  27. moduleclass = 'data'