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.
- Loading branch information
Sarah Walters
committed
Feb 27, 2024
1 parent
b855a7e
commit 0824569
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
easybuild/easyconfigs/m/Miniconda3/Miniconda3-23.11.0-2.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,25 @@ | ||
easyblock = 'EB_Anaconda' | ||
|
||
name = 'Miniconda3' | ||
version = '23.11.0-2' | ||
|
||
homepage = 'https://docs.conda.io/en/latest/miniconda.html' | ||
description = """Miniconda is a free minimal installer for conda. It is a small, | ||
bootstrap version of Anaconda that includes only conda, Python, the packages they | ||
depend on, and a small number of other useful packages.""" | ||
|
||
toolchain = SYSTEM | ||
|
||
source_urls = ['https://repo.anaconda.com/miniconda/'] | ||
local_arch = {'arm64': 'aarch64'}.get(ARCH, ARCH) | ||
sources = ['%%(name)s-py311_%%(version)s-Linux-%s.sh' % local_arch] | ||
checksums = [ | ||
{ | ||
'%(name)s-py311_%(version)s-Linux-x86_64.sh': | ||
'c9ae82568e9665b1105117b4b1e499607d2a920f0aea6f94410e417a0eff1b9c', | ||
'%(name)s-py311_%(version)s-Linux-aarch64.sh': | ||
'decd447fb99dbd0fc5004481ec9bf8c04f9ba28b35a9292afe49ecefe400237f', | ||
} | ||
] | ||
|
||
moduleclass = 'lang' |