libdap-3.20.7-GCCcore-11.2.0.eb 943 B

12345678910111213141516171819202122232425262728293031323334353637
  1. easyblock = 'ConfigureMake'
  2. name = 'libdap'
  3. version = '3.20.7'
  4. homepage = 'https://www.opendap.org/software/libdap'
  5. description = """A C++ SDK which contains an implementation of DAP 2.0 and
  6. DAP4.0. This includes both Client- and Server-side support classes."""
  7. toolchain = {'name': 'GCCcore', 'version': '11.2.0'}
  8. source_urls = ['https://www.opendap.org/pub/source/']
  9. sources = [SOURCE_TAR_GZ]
  10. checksums = ['6856813d0b29e70a36e8a53e9cf20ad680d21d615952263e9c6586704539e78c']
  11. builddependencies = [
  12. ('binutils', '2.37'),
  13. ('Bison', '3.7.6'),
  14. ('flex', '2.6.4'),
  15. ]
  16. dependencies = [
  17. ('cURL', '7.78.0'),
  18. ('libxml2', '2.9.10'),
  19. ('libtirpc', '1.3.2'),
  20. ('PCRE', '8.45'),
  21. ('util-linux', '2.37'),
  22. ]
  23. configopts = 'TIRPC_LIBS="-ltirpc"'
  24. sanity_check_paths = {
  25. 'files': ['bin/getdap', 'bin/getdap4', 'bin/dap-config', 'lib/libdap.a', 'lib/libdap.%s' % SHLIB_EXT],
  26. 'dirs': ['include'],
  27. }
  28. moduleclass = 'lib'