ecCodes-2.8.2-foss-2018b.eb 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. easyblock = 'CMakeMake'
  2. name = 'ecCodes'
  3. version = '2.8.2'
  4. homepage = 'https://software.ecmwf.int/wiki/display/ECC/ecCodes+Home'
  5. description = """ecCodes is a package developed by ECMWF which provides an application programming interface and
  6. a set of tools for decoding and encoding messages in the following formats: WMO FM-92 GRIB edition 1 and edition 2,
  7. WMO FM-94 BUFR edition 3 and edition 4, WMO GTS abbreviated header (only decoding)."""
  8. toolchain = {'name': 'foss', 'version': '2018b'}
  9. source_urls = ['https://confluence.ecmwf.int/download/attachments/45757960/']
  10. sources = ['eccodes-%(version)s-Source.tar.gz']
  11. checksums = ['36e6e73d654027b31c323b0eddd15e4d1f011ad81e79e9c71146ba96293d712a']
  12. builddependencies = [('CMake', '3.11.4')]
  13. dependencies = [
  14. ('netCDF', '4.6.1'),
  15. ('JasPer', '2.0.14'),
  16. ]
  17. separate_build_dir = True
  18. configopts = "-DENABLE_NETCDF=ON -DENABLE_JPG=ON -DENABLE_PYTHON=OFF"
  19. sanity_check_paths = {
  20. 'files': ['bin/%s' % x for x in ['bufr_copy', 'bufr_dump', 'bufr_filter', 'bufr_ls',
  21. 'codes_count', 'codes_info', 'codes_split_file',
  22. 'grib_copy', 'grib_dump', 'grib_filter', 'grib_ls']],
  23. 'dirs': [],
  24. }
  25. moduleclass = 'tools'