OpenSSL-1.1.eb 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. easyblock = 'EB_OpenSSL_wrapper'
  2. name = 'OpenSSL'
  3. version = '1.1'
  4. minimum_openssl_version = '1.1.1'
  5. homepage = 'https://www.openssl.org/'
  6. description = """The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured,
  7. and Open Source toolchain implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1)
  8. protocols as well as a full-strength general purpose cryptography library. """
  9. toolchain = SYSTEM
  10. toolchainopts = {'pic': True}
  11. osdependencies = ['perl']
  12. builddependencies = [('pkg-config', '0.29.2')]
  13. # This easyconfig will wrap the OpenSSL installation in the host system.
  14. # If the system provides the required binary, header files, and libraries for
  15. # this version of OpenSSL, the installation directory of this module will be
  16. # populated with symlinks to the system files. The minimum required version of
  17. # OpenSSL can be finely controled with 'minimum_openssl_version' (defaults to
  18. # easyconfig version).
  19. # If the host system does not have this version of OpenSSL (or with the option
  20. # wrap_system_openssl = False), EasyBuild will fall back to the following
  21. # component list, which will be build and installed as usual.
  22. components = [
  23. (name, '1.1.1m', {
  24. 'easyblock': 'EB_OpenSSL',
  25. 'source_urls': ['https://www.openssl.org/source/'],
  26. 'sources': [SOURCELOWER_TAR_GZ],
  27. #'checksums': ['892a0875b9872acd04a9fde79b1f943075d5ea162415de3047c327df33fbaee5'],
  28. 'start_dir': '%(namelower)s-%(version)s',
  29. }),
  30. ]
  31. moduleclass = 'system'