HDF-4.2.14-GCCcore-7.3.0.eb 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. easyblock = 'ConfigureMake'
  2. name = 'HDF'
  3. version = '4.2.14'
  4. homepage = 'http://www.hdfgroup.org/products/hdf4/'
  5. description = """
  6. HDF (also known as HDF4) is a library and multi-object file format for
  7. storing and managing data between machines.
  8. """
  9. toolchain = {'name': 'GCCcore', 'version': '7.3.0'}
  10. toolchainopts = {'pic': True}
  11. source_urls = ['http://www.hdfgroup.org/ftp/HDF/releases/HDF%(version)s/src/']
  12. sources = [SOURCELOWER_TAR_GZ]
  13. checksums = ['2d383e87c8a0ca6a5352adbd1d5546e6cc43dc21ff7d90f93efa644d85c0b14a']
  14. builddependencies = [
  15. ('binutils', '2.30'),
  16. ('Bison', '3.0.5'),
  17. ('flex', '2.6.4'),
  18. ]
  19. dependencies = [
  20. ('libjpeg-turbo', '2.0.0'),
  21. ('Szip', '2.1.1'),
  22. ('zlib', '1.2.11'),
  23. ]
  24. configopts = ''
  25. configopts += '--with-szlib=$EBROOTSZIP '
  26. configopts += '--includedir=%(installdir)s/include/%(namelower)s '
  27. modextrapaths = {'CPATH': 'include/hdf'}
  28. sanity_check_paths = {
  29. 'files': ['lib/libdf.a', 'lib/libhdf4.settings', 'lib/libmfhdf.a'],
  30. 'dirs': ['bin', 'include/hdf'],
  31. }
  32. moduleclass = 'data'