12345678910111213141516171819202122232425262728293031323334353637 |
- easyblock = 'ConfigureMake'
- name = 'libdap'
- version = '3.20.11'
- homepage = 'https://www.opendap.org/software/libdap'
- description = """A C++ SDK which contains an implementation of DAP 2.0 and
- DAP4.0. This includes both Client- and Server-side support classes."""
- toolchain = {'name': 'GCCcore', 'version': '12.2.0'}
- source_urls = ['https://www.opendap.org/pub/source/']
- sources = [SOURCE_TAR_GZ]
- checksums = ['850debf6ee6991350bf31051308093bee35ddd2121e4002be7e130a319de1415']
- builddependencies = [
- ('binutils', '2.39'),
- ('Bison', '3.8.2'),
- ('flex', '2.6.4'),
- ]
- dependencies = [
- ('cURL', '7.86.0'),
- ('libxml2', '2.10.3'),
- ('libtirpc', '1.3.3'),
- ('PCRE', '8.45'),
- ('util-linux', '2.38.1'),
- ]
- configopts = 'TIRPC_LIBS="-ltirpc"'
- sanity_check_paths = {
- 'files': ['bin/getdap', 'bin/getdap4', 'bin/dap-config', 'lib/libdap.a', 'lib/libdap.%s' % SHLIB_EXT],
- 'dirs': ['include'],
- }
- moduleclass = 'lib'
|