NCO-4.7.9-foss-2018b-Python-2.7.15.eb 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. easyblock = 'ConfigureMake'
  2. name = 'NCO'
  3. version = '4.7.9'
  4. versionsuffix = '-Python-%(pyver)s'
  5. homepage = "http://nco.sourceforge.net"
  6. description = """manipulates and analyzes data stored in netCDF-accessible formats, including DAP, HDF4, and HDF5"""
  7. toolchain = {'name': 'foss', 'version': '2018b'}
  8. source_urls = ['https://github.com/nco/nco/archive/']
  9. sources = ['4.7.9.tar.gz']
  10. checksums = ['048f6298bceb40913c3ae433f875dea1e9129b1c86019128e7271d08f274a879']
  11. builddependencies = [
  12. ('Bison', '3.0.5'),
  13. ('flex', '2.6.4'),
  14. ]
  15. dependencies = [
  16. ('Python', '2.7.15'),
  17. ('UDUNITS', '2.2.26'),
  18. ('expat', '2.2.5'),
  19. ('ANTLR', '2.7.7', versionsuffix),
  20. ('libdap', '3.20.3'),
  21. ('GSL', '2.5'),
  22. ('netCDF', '4.6.1'),
  23. ]
  24. sanity_check_paths = {
  25. 'files': ['bin/nc%s' % x for x in ('ap2', 'atted', 'bo', 'diff', 'ea', 'ecat', 'es',
  26. 'flint', 'ks', 'pdq', 'ra', 'rcat', 'rename', 'wa')] +
  27. ['lib/libnco.a', 'lib/libnco.%s' % SHLIB_EXT, 'lib/libnco_c++.a', 'lib/libnco_c++.%s' % SHLIB_EXT],
  28. 'dirs': ['include'],
  29. }
  30. moduleclass = 'tools'