-
Notifications
You must be signed in to change notification settings - Fork 706
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add easyconfig fastjet-contrib-1.053-gompi-2023b.eb
- Loading branch information
1 parent
c434a59
commit 6c07182
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
easybuild/easyconfigs/f/fastjet-contrib/fastjet-contrib-1.053-gompi-2023b.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,32 @@ | ||
# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild | ||
# Author: Alexander Puck Neuwirth <[email protected]> | ||
|
||
easyblock = 'ConfigureMake' | ||
|
||
name = 'fastjet-contrib' | ||
version = '1.053' | ||
|
||
homepage = 'https://fastjet.hepforge.org/contrib/' | ||
description = """3rd party extensions of FastJet""" | ||
|
||
toolchain = {'name': 'gompi', 'version': '2023a'} | ||
|
||
toolchainopts = {'optarch': True, 'pic': True} | ||
|
||
source_urls = ['https://fastjet.hepforge.org/contrib/downloads/'] | ||
sources = ['fjcontrib-' + version + '.tar.gz'] | ||
checksums = ['b12a248e0b143934c99e3b7c8dd83265122f6c6c09533c2a03df44f5eff1e6fa'] | ||
|
||
dependencies = [ | ||
('fastjet', '3.4.2') | ||
] | ||
|
||
build_cmd_targets = ['', 'fragile-shared'] | ||
install_cmd = "make install && make fragile-shared-install" | ||
|
||
sanity_check_paths = { | ||
'files': ['lib/libfastjetcontribfragile.%s' % SHLIB_EXT], | ||
'dirs': ['include/fastjet/contrib'] | ||
} | ||
|
||
moduleclass = 'phys' |