libsodium-1.0.18-GCCcore-8.2.0.eb 650 B

12345678910111213141516171819202122232425262728
  1. easyblock = 'ConfigureMake'
  2. name = 'libsodium'
  3. version = '1.0.18'
  4. homepage = 'http://doc.libsodium.org/'
  5. description = """
  6. Sodium is a modern, easy-to-use software library for encryption, decryption,
  7. signatures, password hashing and more.
  8. """
  9. toolchain = {'name': 'GCCcore', 'version': '8.2.0'}
  10. toolchainopts = {'pic': True}
  11. source_urls = ['https://download.libsodium.org/libsodium/releases/']
  12. sources = [SOURCE_TAR_GZ]
  13. builddependencies = [
  14. ('binutils', '2.31.1'),
  15. ]
  16. sanity_check_paths = {
  17. 'files': ['include/sodium.h', 'lib/libsodium.so', 'lib/libsodium.a'],
  18. 'dirs': ['include/sodium', 'lib/pkgconfig'],
  19. }
  20. moduleclass = 'lib'