Add support for star-ccm-plus v17 (#35056)
This commit is contained in:
parent
a00b92a69f
commit
a6731b732e
1 changed files with 9 additions and 1 deletions
|
@ -14,9 +14,17 @@ class StarCcmPlus(Package):
|
||||||
"""STAR-CCM+ (Computational Continuum Mechanics) CFD solver."""
|
"""STAR-CCM+ (Computational Continuum Mechanics) CFD solver."""
|
||||||
|
|
||||||
homepage = "https://mdx.plm.automation.siemens.com/star-ccm-plus"
|
homepage = "https://mdx.plm.automation.siemens.com/star-ccm-plus"
|
||||||
url = "file://{0}/STAR-CCM+11.06.010_02_linux-x86_64.tar.gz".format(os.getcwd())
|
|
||||||
manual_download = True
|
manual_download = True
|
||||||
|
|
||||||
|
def url_for_version(self, version):
|
||||||
|
url = "{pwd}/STAR-CCM+{version}_linux-x86_64.tar.gz".format(
|
||||||
|
pwd=os.getcwd(), version=version
|
||||||
|
)
|
||||||
|
return url
|
||||||
|
|
||||||
|
version(
|
||||||
|
"17.02.007_01", sha256="79c0859b84f753d9c690aad60b6252677a8625224148fb698aa6a94aa2a09a8c"
|
||||||
|
)
|
||||||
version(
|
version(
|
||||||
"16.06.008_01", sha256="64577ec0e9a98d971114e68c4eec05bb746e061dfbf77b8d8919583c796c9e4b"
|
"16.06.008_01", sha256="64577ec0e9a98d971114e68c4eec05bb746e061dfbf77b8d8919583c796c9e4b"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue