From 4a7c21d09ba269541c1087861377389b690c394d Mon Sep 17 00:00:00 2001 From: Sebastian Achilles <s.achilles@fz-juelich.de> Date: Wed, 9 Nov 2022 19:56:50 +0100 Subject: [PATCH] adding easyconfigs: GSL-2.7-GCC-11.3.0.eb --- Golden_Repo/g/GSL/GSL-2.7-GCCcore-11.3.0.eb | 27 +++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Golden_Repo/g/GSL/GSL-2.7-GCCcore-11.3.0.eb diff --git a/Golden_Repo/g/GSL/GSL-2.7-GCCcore-11.3.0.eb b/Golden_Repo/g/GSL/GSL-2.7-GCCcore-11.3.0.eb new file mode 100644 index 000000000..27e8491ad --- /dev/null +++ b/Golden_Repo/g/GSL/GSL-2.7-GCCcore-11.3.0.eb @@ -0,0 +1,27 @@ +easyblock = 'ConfigureMake' + +name = 'GSL' +version = '2.7' + +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': '11.3.0'} +toolchainopts = {'unroll': True, 'pic': True} + +builddependencies = [('binutils', '2.38')] + +source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['efbbf3785da0e53038be7907500628b466152dbc3c173a87de1b5eba2e23602b'] + +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' -- GitLab