12345678910111213141516171819202122232425262728293031323334 |
- easyblock = 'ConfigureMake'
- name = 'ZeroMQ'
- version = '4.3.1'
- homepage = 'http://www.zeromq.org/'
- description =
- toolchain = {'name': 'foss', 'version': '2019a'}
- toolchainopts = {'pic': True}
- source_urls = ['https://github.com/zeromq/libzmq/releases/download/v%(version)s/']
- sources = [SOURCELOWER_TAR_GZ]
- # --with-pgm will use shipped OpenPGM (in foreign subdir)
- configopts = '--with-pic --with-libsodium --with-pgm '
- dependencies = [
- ('OpenPGM', '5.2.122'),
- ('util-linux', '2.33'),
- ('libsodium', '1.0.18'),
- ]
- sanity_check_paths = {
- 'files': ['lib/libzmq.%s' % SHLIB_EXT, 'lib/libzmq.a'],
- 'dirs': ['include', 'lib'],
- }
- moduleclass = 'devel'
|