diff options
author | Brian Homerding <homerdin@gmail.com> | 2017-11-10 20:59:33 -0600 |
---|---|---|
committer | Christoph Junghans <christoph.junghans@gmail.com> | 2017-11-10 19:59:33 -0700 |
commit | 19f8940c0167d55294cc2197e7473a79c58dfee5 (patch) | |
tree | 8f483f89c8c5695c84a1aa67cb3baa6a4376a12e /var | |
parent | 263126bc5d8522f2f7c91b9c1380aaf61a0431d5 (diff) | |
download | spack-19f8940c0167d55294cc2197e7473a79c58dfee5.tar.gz spack-19f8940c0167d55294cc2197e7473a79c58dfee5.tar.bz2 spack-19f8940c0167d55294cc2197e7473a79c58dfee5.tar.xz spack-19f8940c0167d55294cc2197e7473a79c58dfee5.zip |
Nekbone: Installing data files for example runs (#6243)
* Nekbone: Installing data files for example runs
* Typo Fix
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/nekbone/package.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/nekbone/package.py b/var/spack/repos/builtin/packages/nekbone/package.py index 435e9f4b85..3d419b9156 100644 --- a/var/spack/repos/builtin/packages/nekbone/package.py +++ b/var/spack/repos/builtin/packages/nekbone/package.py @@ -32,7 +32,7 @@ class Nekbone(Package): Nek5000 is a high order, incompressible Navier-Stokes solver based on the spectral element method.""" - homepage = "hhttps://github.com/Nek5000/Nekbone" + homepage = "https://github.com/Nek5000/Nekbone" url = "https://github.com/Nek5000/Nekbone/tarball/v17.0" tags = ['proxy-app', 'ecp-proxy-app'] @@ -59,3 +59,6 @@ class Nekbone(Package): mkdir(path) install('nekbone', path) install('nekpmpi', path) + install('data.rea', path) + install('SIZE', path) + install('README', path) |