libdap-3.20.3-GCCcore-7.3.0.eb 885 B

12345678910111213141516171819202122232425262728293031323334
  1. easyblock = 'ConfigureMake'
  2. name = 'libdap'
  3. version = '3.20.3'
  4. homepage = 'http://opendap.org/download/libdap'
  5. description = """A C++ SDK which contains an implementation of DAP 2.0
  6. and the development versions of DAP3, up to 3.4.
  7. This includes both Client- and Server-side support classes."""
  8. toolchain = {'name': 'GCCcore', 'version': '7.3.0'}
  9. source_urls = ['http://www.opendap.org/pub/source/']
  10. sources = [SOURCE_TAR_GZ]
  11. checksums = ['29961922b53f62e9d4eb34d1d50ddc23a24100664f97b71f42561fa5588ccc58']
  12. builddependencies = [
  13. ('binutils', '2.30'),
  14. ('Bison', '3.0.5'),
  15. ('flex', '2.6.4'),
  16. ]
  17. dependencies = [
  18. ('cURL', '7.60.0'),
  19. ('libxml2', '2.9.8'),
  20. ('LibUUID', '1.0.3'),
  21. ]
  22. sanity_check_paths = {
  23. 'files': ['bin/getdap', 'bin/getdap4', 'bin/dap-config', 'lib/libdap.a', 'lib/libdap.%s' % SHLIB_EXT],
  24. 'dirs': ['include'],
  25. }
  26. moduleclass = 'lib'