mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-07 23:42:12 +01:00

new file: g/GDL/GDL-0.9.9-intel-2017c.eb new file: g/GSL/GSL-2.5.eb new file: o/OpenEXR/OpenEXR-2.3.0-intel-2017c.eb new file: o/OpenImageIO/OpenImageIO-2.0.12-intel-2017c.eb new file: p/PLplot/PLplot-5.11.1.eb new file: p/Py/Py-3.7.eb new file: p/Python/Python-3.7.3-GCCcore-6.3.0-base.eb
28 lines
849 B
Plaintext
28 lines
849 B
Plaintext
# IT4Innovations 2019
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'GSL'
|
|
version = '2.5'
|
|
|
|
homepage = 'http://www.gnu.org/software/gsl/'
|
|
description = """The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers.
|
|
The library provides a wide range of mathematical routines such as random number generators, special functions
|
|
and least-squares fitting."""
|
|
|
|
toolchain = SYSTEM
|
|
toolchainopts = {'unroll': True, 'pic': True}
|
|
|
|
source_urls = [GNU_SOURCE]
|
|
sources = [SOURCELOWER_TAR_GZ]
|
|
checksums = ['0460ad7c2542caaddc6729762952d345374784100223995eb14d614861f2258d']
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/%s' % x for x in ['gsl-config', 'gsl-histogram', 'gsl-randist']] +
|
|
['include/gsl/gsl_types.h'] +
|
|
['lib/lib%s.%s' % (x, SHLIB_EXT) for x in ['gsl', 'gslcblas']],
|
|
'dirs': [],
|
|
}
|
|
|
|
moduleclass = 'numlib'
|