From 6404f9fd1f8858d121d6c6b8e3ad92b03960e966 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ruth=20Sch=C3=B6bel?= <schoebel1@jwlogin02.juwels> Date: Mon, 12 Dec 2022 14:34:51 +0100 Subject: [PATCH] ARPACK-NG --- .../ARPACK-NG/ARPACK-NG-3.8.0-gpsmkl-2022a.eb | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 Golden_Repo/a/ARPACK-NG/ARPACK-NG-3.8.0-gpsmkl-2022a.eb diff --git a/Golden_Repo/a/ARPACK-NG/ARPACK-NG-3.8.0-gpsmkl-2022a.eb b/Golden_Repo/a/ARPACK-NG/ARPACK-NG-3.8.0-gpsmkl-2022a.eb new file mode 100644 index 000000000..98d08eba5 --- /dev/null +++ b/Golden_Repo/a/ARPACK-NG/ARPACK-NG-3.8.0-gpsmkl-2022a.eb @@ -0,0 +1,35 @@ +easyblock = 'ConfigureMake' + +name = 'arpack-ng' +version = "3.8.0" + +homepage = 'https://github.com/opencollab/arpack-ng' +description = """ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems.""" + +toolchain = {'name': 'gpsmkl', 'version': '2022a'} +toolchainopts = {'pic': True, 'usempi': True} + + +source_urls = ['https://github.com/opencollab/arpack-ng/archive/'] +sources = ['%(version)s.tar.gz'] +checksums = ['ada5aeb3878874383307239c9235b716a8a170c6d096a6625bfd529844df003d'] + +builddependencies = [ + ('Autotools', '20220317'), + ('pkg-config', '1.8.0'), +] + +dependencies = [ + ('Eigen', '3.4.0') +] + +preconfigopts = "sh bootstrap && " +configopts = '--enable-mpi --with-pic --with-blas="$LIBBLAS" --with-lapack="$LIBLAPACK"' + +sanity_check_paths = { + 'files': ["lib64/libarpack.la", "lib64/libarpack.%s" % SHLIB_EXT, + "lib64/libparpack.la", "lib64/libparpack.%s" % SHLIB_EXT], + 'dirs': [] +} + +moduleclass = 'numlib' -- GitLab