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.
Merge pull request easybuilders#19284 from sassy-crick/20231122112340…
…_new_pr_json-fortran830 {lib}[intel-compilers/2022.0.1,intel-compilers/2022.2.1] json-fortran v8.3.0
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
easybuild/easyconfigs/j/json-fortran/json-fortran-8.3.0-intel-compilers-2022.0.1.eb
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,34 @@ | ||
# J. Sassmannshausen (Imperial College London/UK) | ||
|
||
easyblock = 'CMakeMake' | ||
|
||
name = 'json-fortran' | ||
version = '8.3.0' | ||
|
||
homepage = 'https://github.com/jacobwilliams/json-fortran' | ||
description = "JSON-Fortran: A Modern Fortran JSON API" | ||
|
||
toolchain = {'name': 'intel-compilers', 'version': '2022.0.1'} | ||
|
||
source_urls = ['https://github.com/jacobwilliams/json-fortran/archive/'] | ||
sources = ['%(version)s.tar.gz'] | ||
checksums = ['5fe9ad709a726416cec986886503e0526419742e288c4e43f63c1c22026d1e8a'] | ||
|
||
builddependencies = [ | ||
('binutils', '2.37'), | ||
('CMake', '3.21.1'), | ||
] | ||
|
||
configopts = [ | ||
'-DUSE_GNU_INSTALL_CONVENTION=TRUE', | ||
] | ||
|
||
runtest = 'check' | ||
|
||
sanity_check_paths = { | ||
'files': ['lib/libjsonfortran.a', 'lib/libjsonfortran.%s' % SHLIB_EXT, | ||
'include/json_module.mod', 'include/json_parameters.mod'], | ||
'dirs': ['include'], | ||
} | ||
|
||
moduleclass = 'lib' |