nettle-3.3-intel-2017.02.eb 863 B

1234567891011121314151617181920212223242526272829
  1. easyblock = 'ConfigureMake'
  2. name = 'nettle'
  3. version = '3.3'
  4. homepage = 'http://www.lysator.liu.se/~nisse/nettle/'
  5. description = """Nettle is a cryptographic library that is designed to fit easily
  6. in more or less any context: In crypto toolkits for object-oriented
  7. languages (C++, Python, Pike, ...), in applications like LSH or GNUPG,
  8. or even in kernel space."""
  9. toolchain = {'name': 'intel', 'version': '2017.02'}
  10. source_urls = [GNU_SOURCE]
  11. sources = [SOURCE_TAR_GZ]
  12. dependencies = [
  13. ('GMP', '6.1.2'),
  14. ('M4', '1.4.18'),
  15. ]
  16. sanity_check_paths = {
  17. 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', 'pkcs1-conv', 'sexp-conv']] +
  18. ['lib64/libhogweed.a', 'lib64/libhogweed.%s' % SHLIB_EXT,
  19. 'lib64/libnettle.a', 'lib64/libnettle.%s' % SHLIB_EXT],
  20. 'dirs': ['include/nettle'],
  21. }
  22. moduleclass = 'lib'