ZeroMQ-4.3.1-foss-2019a.eb 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. easyblock = 'ConfigureMake'
  2. name = 'ZeroMQ'
  3. version = '4.3.1'
  4. homepage = 'http://www.zeromq.org/'
  5. description = """ZeroMQ looks like an embeddable networking library but acts like a concurrency framework.
  6. It gives you sockets that carry atomic messages across various transports like in-process,
  7. inter-process, TCP, and multicast. You can connect sockets N-to-N with patterns like fanout,
  8. pub-sub, task distribution, and request-reply. It's fast enough to be the fabric for clustered
  9. products. Its asynchronous I/O model gives you scalable multicore applications, built as asynchronous
  10. message-processing tasks. It has a score of language APIs and runs on most operating systems."""
  11. toolchain = {'name': 'foss', 'version': '2019a'}
  12. toolchainopts = {'pic': True}
  13. source_urls = ['https://github.com/zeromq/libzmq/releases/download/v%(version)s/']
  14. sources = [SOURCELOWER_TAR_GZ]
  15. # --with-pgm will use shipped OpenPGM (in foreign subdir)
  16. configopts = '--with-pic --with-libsodium --with-pgm '
  17. dependencies = [
  18. ('OpenPGM', '5.2.122'),
  19. ('util-linux', '2.33'),
  20. ('libsodium', '1.0.18'),
  21. ]
  22. sanity_check_paths = {
  23. 'files': ['lib/libzmq.%s' % SHLIB_EXT, 'lib/libzmq.a'],
  24. 'dirs': ['include', 'lib'],
  25. }
  26. moduleclass = 'devel'