nettle-3.6-GCCcore-10.2.0.eb 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. easyblock = 'ConfigureMake'
  2. name = 'nettle'
  3. version = '3.6'
  4. homepage = 'https://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': 'GCCcore', 'version': '10.2.0'}
  10. source_urls = [GNU_SOURCE]
  11. sources = [SOURCE_TAR_GZ]
  12. checksums = ['d24c0d0f2abffbc8f4f34dcf114b0f131ec3774895f3555922fe2f40f3d5e3f1']
  13. builddependencies = [
  14. ('binutils', '2.35'),
  15. ('Autotools', '20200321'),
  16. ]
  17. dependencies = [
  18. ('GMP', '6.2.0'),
  19. ]
  20. sanity_check_paths = {
  21. 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', 'pkcs1-conv', 'sexp-conv']] +
  22. [('lib/libhogweed.a', 'lib64/libhogweed.a'),
  23. ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT),
  24. ('lib/libnettle.a', 'lib64/libnettle.a'),
  25. ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)],
  26. 'dirs': ['include/nettle'],
  27. }
  28. moduleclass = 'lib'