forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding easyconfigs: GSL-2.8-GCC-13.3.0.eb
- Loading branch information
Stefan Wolfsheimer
committed
Oct 22, 2024
1 parent
3f99fc2
commit dc8710c
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
easyblock = 'ConfigureMake' | ||
|
||
name = 'GSL' | ||
version = '2.8' | ||
|
||
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': 'GCC', 'version': '13.3.0'} | ||
toolchainopts = {'unroll': True, 'pic': True} | ||
|
||
source_urls = [GNU_SOURCE] | ||
sources = [SOURCELOWER_TAR_GZ] | ||
checksums = ['6a99eeed15632c6354895b1dd542ed5a855c0f15d9ad1326c6fe2b2c9e423190'] | ||
|
||
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' |