-
Notifications
You must be signed in to change notification settings - Fork 710
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 #20791 from pavelToman/20240610161442_new_pr_curre…
…ntNe100 {bio}[GCCcore/12.3.0] currentNe v1.0.0
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
easybuild/easyconfigs/c/currentNe/currentNe-1.0.0-GCCcore-12.3.0.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,38 @@ | ||
easyblock = 'MakeCp' | ||
|
||
name = 'currentNe' | ||
version = '1.0.0' | ||
local_commit = '37daed5' | ||
|
||
homepage = 'https://github.com/esrud/currentNe' | ||
description = """Estimation of current effective population using artificial neural networks.""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '12.3.0'} | ||
|
||
github_account = 'esrud' | ||
source_urls = [GITHUB_SOURCE] | ||
sources = [{ | ||
"download_filename": "%s.tar.gz" % local_commit, | ||
"filename": "%(name)s-%(version)s.tar.gz", | ||
}] | ||
checksums = ['77aab8e7403b726b30f34474d3177a3b118afb4b0dc57636dc0b2b93274c6bca'] | ||
|
||
builddependencies = [ | ||
('binutils', '2.40'), | ||
('make', '4.4.1'), | ||
] | ||
|
||
files_to_copy = [ | ||
'lib', | ||
(['currentNe.cpp'], 'lib'), | ||
(['currentNe'], 'bin'), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': ['lib/currentNe.cpp'], | ||
'dirs': ['bin', 'lib'] | ||
} | ||
|
||
sanity_check_commands = ['currentNe -h 2>&1 | grep "USAGE"'] | ||
|
||
moduleclass = 'bio' |