Blitz++-1.0.2-GCCcore-10.2.0.eb 892 B

12345678910111213141516171819202122232425262728293031
  1. easyblock = 'CMakeMake'
  2. name = 'Blitz++'
  3. version = '1.0.2'
  4. homepage = 'https://github.com/blitzpp/blitz'
  5. description = """
  6. Blitz++ is a (LGPLv3+) licensed meta-template library for array manipulation
  7. in C++ with a speed comparable to Fortran implementations, while preserving an
  8. object-oriented interface
  9. """
  10. toolchain = {'name': 'GCCcore', 'version': '10.2.0'}
  11. toolchainopts = {'pic': True}
  12. source_urls = [('https://github.com/blitzpp/blitz/archive/')]
  13. sources = ['%(version)s.tar.gz']
  14. checksums = ['500db9c3b2617e1f03d0e548977aec10d36811ba1c43bb5ef250c0e3853ae1c2']
  15. builddependencies = [('CMake', '3.18.4'), ('binutils', '2.35')]
  16. separate_build_dir = True
  17. sanity_check_paths = {
  18. 'files': ['lib64/libblitz.a', 'lib64/libblitz.%s' % SHLIB_EXT],
  19. 'dirs': ['include/blitz/array', 'include/blitz/meta',
  20. 'include/random', 'lib64/pkgconfig'],
  21. }
  22. moduleclass = 'lib'