-
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.
Merge pull request #20227 from scratchings/20226_add_miniforge3
Add easyconfig for Miniforge3
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
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,26 @@ | ||
easyblock = 'EB_Mamba' | ||
|
||
name = 'Miniforge3' | ||
version = '24.1.2-0' | ||
|
||
homepage = 'https://github.com/conda-forge/miniforge' | ||
description = """Miniforge is a free minimal installer for conda and Mamba specific | ||
to conda-forge.""" | ||
|
||
toolchain = SYSTEM | ||
|
||
source_urls = ['https://github.com/conda-forge/miniforge/releases/download/%(version)s'] | ||
local_arch = {'arm64': 'aarch64'}.get(ARCH, ARCH) | ||
sources = ['%%(name)s-%%(version)s-Linux-%s.sh' % local_arch] | ||
checksums = [ | ||
{ | ||
'%(name)s-%(version)s-Linux-x86_64.sh': | ||
'dbadb808edf4da00af35d888d3eeebbfdce71972b60bf4b16dbacaee2ab57f28', | ||
'%(name)s-%(version)s-Linux-ppc64le.sh': | ||
'858b9acbcca1e3f67298a56095f547f2c540d79e1020918cf0d8d6a8af407542', | ||
'%(name)s-py312_%(version)s-Linux-aarch64.sh': | ||
'f881e2fa24aa898c25fac3250ccb213e8b892fdd95851f000dce93c419e8f89a', | ||
} | ||
] | ||
|
||
moduleclass = 'lang' |