netCDF-4.4.1.1-intel-2016.02-GCC-4.9.eb 863 B

1234567891011121314151617181920212223242526272829303132333435
  1. name = 'netCDF'
  2. version = '4.4.1.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': 'intel', 'version': '2016.02-GCC-4.9'}
  8. toolchainopts = {'pic': True, 'usempi': True}
  9. sources = ['v%(version)s.tar.gz']
  10. source_urls = [
  11. 'https://github.com/Unidata/netcdf-c/archive/'
  12. ]
  13. dependencies = [
  14. ('HDF5', '1.8.18'),
  15. ('cURL', '7.49.1'),
  16. ('Szip', '2.1'),
  17. ]
  18. builddependencies = [
  19. ('Autotools', '20150215'),
  20. ('CMake', '3.5.2'),
  21. ('Doxygen', '1.8.11'),
  22. ]
  23. # make sure both static and shared libs are built
  24. configopts = [
  25. "-DBUILD_SHARED_LIBS=OFF ",
  26. "-DBUILD_SHARED_LIBS=ON ",
  27. ]
  28. moduleclass = 'data'