g2clib-1.7.0-GCCcore-12.2.0.eb 762 B

1234567891011121314151617181920212223242526272829303132
  1. easyblock = 'CMakeMake'
  2. name = 'g2clib'
  3. version = '1.7.0'
  4. homepage = 'https://github.com/NOAA-EMC/NCEPLIBS-g2c'
  5. description = """Library contains GRIB2 encoder/decoder ('C' version)."""
  6. toolchain = {'name': 'GCCcore', 'version': '12.2.0'}
  7. toolchainopts = {'pic': True}
  8. source_urls = ['https://github.com/NOAA-EMC/NCEPLIBS-g2c/archive/refs/tags/']
  9. sources = ['v%(version)s.tar.gz']
  10. checksums = ['73afba9da382fed73ed8692d77fa037bb313280879cd4012a5e5697dccf55175']
  11. builddependencies = [
  12. ('binutils', '2.39'),
  13. ('CMake', '3.24.3'),
  14. ]
  15. dependencies = [
  16. ('JasPer', '4.0.0'),
  17. ('libpng', '1.6.38'),
  18. ('libjpeg-turbo', '2.1.4'),
  19. ]
  20. sanity_check_paths = {
  21. 'files': ['lib/libg2c.%s' % SHLIB_EXT],
  22. 'dirs': ['include'],
  23. }
  24. moduleclass = 'data'