OpenPGM-5.2.122-GCCcore-8.2.0.eb 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. easyblock = 'ConfigureMake'
  2. name = 'OpenPGM'
  3. version = '5.2.122'
  4. homepage = 'http://code.google.com/p/openpgm/'
  5. description = """
  6. OpenPGM is an open source implementation of the Pragmatic General Multicast
  7. (PGM) specification in RFC 3208 available at www.ietf.org. PGM is a reliable
  8. and scalable multicast protocol that enables receivers to detect loss, request
  9. retransmission of lost data, or notify an application of unrecoverable loss.
  10. PGM is a receiver-reliable protocol, which means the receiver is responsible
  11. for ensuring all data is received, absolving the sender of reception
  12. responsibility.
  13. """
  14. toolchain = {'name': 'GCCcore', 'version': '8.2.0'}
  15. toolchainopts = {'pic': True}
  16. source_urls = ['https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/openpgm/']
  17. sources = ['libpgm-%(version)s.tar.gz']
  18. checksums = ['6b895f550b95284dcde7189b01e04a9a1c1f94579af31b1eebd32c2207a1ba2c']
  19. builddependencies = [
  20. ('binutils', '2.31.1'),
  21. ]
  22. start_dir = 'pgm'
  23. sanity_check_paths = {
  24. 'files': ['lib/libpgm.%s' % SHLIB_EXT, 'lib/libpgm.a'],
  25. 'dirs': ['include'],
  26. }
  27. moduleclass = 'system'