123456789101112131415161718192021222324252627282930313233343536 |
- easyblock = 'ConfigureMake'
- name = 'nettle'
- version = '3.6'
- homepage = 'https://www.lysator.liu.se/~nisse/nettle/'
- description = """Nettle is a cryptographic library that is designed to fit easily
- in more or less any context: In crypto toolkits for object-oriented
- languages (C++, Python, Pike, ...), in applications like LSH or GNUPG,
- or even in kernel space."""
- toolchain = {'name': 'GCCcore', 'version': '10.2.0'}
- source_urls = [GNU_SOURCE]
- sources = [SOURCE_TAR_GZ]
- checksums = ['d24c0d0f2abffbc8f4f34dcf114b0f131ec3774895f3555922fe2f40f3d5e3f1']
- builddependencies = [
- ('binutils', '2.35'),
- ('Autotools', '20200321'),
- ]
- dependencies = [
- ('GMP', '6.2.0'),
- ]
- sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', 'pkcs1-conv', 'sexp-conv']] +
- [('lib/libhogweed.a', 'lib64/libhogweed.a'),
- ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT),
- ('lib/libnettle.a', 'lib64/libnettle.a'),
- ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)],
- 'dirs': ['include/nettle'],
- }
- moduleclass = 'lib'
|