Blitz++-0.10-GCCcore-7.3.0.eb 945 B

123456789101112131415161718192021222324252627282930313233
  1. easyblock = 'ConfigureMake'
  2. name = 'Blitz++'
  3. version = '0.10'
  4. homepage = 'http://blitz.sourceforge.net/'
  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': '7.3.0'}
  11. toolchainopts = {'pic': True}
  12. source_urls = [('https://sourceforge.net/projects/blitz/files/blitz/Blitz%2B%2B%20%(version)s/blitz-%(version)s.tar.gz/', 'download')]
  13. sources = ['blitz-%(version)s.tar.gz']
  14. checksums = ['804ef0e6911d43642a2ea1894e47c6007e4c185c866a7d68bad1e4c8ac4e6f94']
  15. builddependencies = [
  16. ('binutils', '2.30'),
  17. ]
  18. configopts = '--enable-shared'
  19. sanity_check_paths = {
  20. 'files': ['lib/libblitz.a'],
  21. 'dirs': ['include/blitz/array', 'include/blitz/gnu', 'include/blitz/meta',
  22. 'include/random', 'lib/pkgconfig'],
  23. }
  24. moduleclass = 'lib'