netCDF-4.4.1.1-foss-2017b-HDF5-1.8.19.eb 987 B

123456789101112131415161718192021222324252627282930313233343536
  1. name = 'netCDF'
  2. version = '4.4.1.1'
  3. hdf5_ver = '1.8.19'
  4. versionsuffix = '-HDF5-%s' % hdf5_ver
  5. homepage = 'http://www.unidata.ucar.edu/software/netcdf/'
  6. description = """NetCDF (network Common Data Form) is a set of software libraries
  7. and machine-independent data formats that support the creation, access, and sharing of array-oriented
  8. scientific data."""
  9. toolchain = {'name': 'foss', 'version': '2017b'}
  10. toolchainopts = {'pic': True, 'usempi': True}
  11. source_urls = ['https://github.com/Unidata/netcdf-c/archive/']
  12. sources = ['v%(version)s.tar.gz']
  13. checksums = ['7f040a0542ed3f6d27f3002b074e509614e18d6c515b2005d1537fec01b24909']
  14. dependencies = [
  15. ('HDF5', hdf5_ver),
  16. ('cURL', '7.56.0'),
  17. ('Szip', '2.1.1'),
  18. ]
  19. builddependencies = [
  20. ('Autotools', '20170619'),
  21. ('CMake', '3.9.5'),
  22. ('Doxygen', '1.8.13'),
  23. ]
  24. # make sure both static and shared libs are built
  25. configopts = [
  26. "-DBUILD_SHARED_LIBS=OFF ",
  27. "-DBUILD_SHARED_LIBS=ON ",
  28. ]
  29. moduleclass = 'data'