GSL-2.6-GCC-10.2.0.eb 857 B

12345678910111213141516171819202122232425
  1. easyblock = 'ConfigureMake'
  2. name = 'GSL'
  3. version = '2.6'
  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': 'GCC', 'version': '10.2.0'}
  9. toolchainopts = {'unroll': True, 'pic': True}
  10. source_urls = [GNU_SOURCE]
  11. sources = [SOURCELOWER_TAR_GZ]
  12. checksums = ['b782339fc7a38fe17689cb39966c4d821236c28018b6593ddb6fd59ee40786a8']
  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'