GSL-2.7-intel-compilers-2021.3.0.eb 871 B

12345678910111213141516171819202122232425
  1. easyblock = 'ConfigureMake'
  2. name = 'GSL'
  3. version = '2.7'
  4. homepage = 'https://www.gnu.org/software/gsl/'
  5. description = """The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers.
  6. The library provides a wide range of mathematical routines such as random number generators, special functions
  7. and least-squares fitting."""
  8. toolchain = {'name': 'intel-compilers', 'version': '2021.3.0'}
  9. toolchainopts = {'unroll': True, 'pic': True}
  10. source_urls = [GNU_SOURCE]
  11. sources = [SOURCELOWER_TAR_GZ]
  12. checksums = ['efbbf3785da0e53038be7907500628b466152dbc3c173a87de1b5eba2e23602b']
  13. sanity_check_paths = {
  14. 'files': ['bin/%s' % x for x in ['gsl-config', 'gsl-histogram', 'gsl-randist']] +
  15. ['include/gsl/gsl_types.h'] +
  16. ['lib/lib%s.%s' % (x, SHLIB_EXT) for x in ['gsl', 'gslcblas']],
  17. 'dirs': [],
  18. }
  19. moduleclass = 'numlib'