libdap-3.18.1-intel-2018.eb 775 B

1234567891011121314151617181920212223242526272829303132
  1. easyblock = 'ConfigureMake'
  2. name = 'libdap'
  3. version = '3.18.1'
  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': 'intel', 'version': '2018'}
  9. source_urls = ['http://www.opendap.org/pub/source/']
  10. sources = [SOURCE_TAR_GZ]
  11. builddependencies = [
  12. ('Bison', '3.0.4'),
  13. ('flex', '2.6.4'),
  14. ]
  15. dependencies = [
  16. ('cURL', '7.55.1'),
  17. ('libxml2', '2.9.4'),
  18. ('LibUUID', '1.0.3'),
  19. ]
  20. sanity_check_paths = {
  21. 'files': ['bin/getdap', 'bin/getdap4', 'bin/dap-config', 'lib/libdap.a', 'lib/libdap.%s' % SHLIB_EXT],
  22. 'dirs': ['include'],
  23. }
  24. moduleclass = 'lib'