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

new file: g/GSL/GSL-2.6-GCCcore-8.3.0.eb new file: g/GST-plugins-base/GST-plugins-base-1.16.2-GCCcore-8.3.0.eb new file: g/GStreamer/GStreamer-1.16.2-GCCcore-8.3.0.eb new file: n/Ninja/Ninja-1.9.0-GCCcore-8.3.0.eb new file: w/wxWidgets/wxWidgets-3.1.3-Py-3.7.eb
29 lines
888 B
Plaintext
29 lines
888 B
Plaintext
# IT4Innovations 2020
|
|
# LK
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'GSL'
|
|
version = '2.6'
|
|
|
|
homepage = 'https://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 = {'name': 'GCCcore', 'version': '8.3.0'}
|
|
toolchainopts = {'unroll': True, 'pic': True}
|
|
|
|
source_urls = [GNU_SOURCE]
|
|
sources = [SOURCELOWER_TAR_GZ]
|
|
checksums = ['b782339fc7a38fe17689cb39966c4d821236c28018b6593ddb6fd59ee40786a8']
|
|
|
|
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'
|