diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/mpas-model/package.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/mpas-model/package.py b/var/spack/repos/builtin/packages/mpas-model/package.py index 65a10bdc2f..1a14b800f0 100644 --- a/var/spack/repos/builtin/packages/mpas-model/package.py +++ b/var/spack/repos/builtin/packages/mpas-model/package.py @@ -26,6 +26,15 @@ class MpasModel(MakefilePackage): parallel = False + resource(when='@6.2:6.3', + name='MPAS-Data', + git='https://github.com/MPAS-Dev/MPAS-Data.git', + commit='33561790de8b43087ab850be833f51a4e605f1bb') + resource(when='@7.0', + name='MPAS-Data', + git='https://github.com/MPAS-Dev/MPAS-Data.git', + tag='v7.0') + def target(self, model, action): spec = self.spec satisfies = spec.satisfies @@ -72,6 +81,8 @@ class MpasModel(MakefilePackage): return targets def build(self, spec, prefix): + copy_tree(join_path('MPAS-Data', 'atmosphere'), + join_path('src', 'core_atmosphere', 'physics')) make(*self.target('init_atmosphere', 'all')) mkdir('bin') copy('init_atmosphere_model', 'bin') |