diff options
author | downloadico <download@carc.unm.edu> | 2022-02-19 05:05:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-19 05:05:11 -0700 |
commit | 22d07b328e4c06f69a573a5377ec509a71a6ac82 (patch) | |
tree | 68c7a178bcdb38fc2673aa4db9e158e27bb3d730 | |
parent | f37855f5bb56b711b65c55a8b2a048f1ceb1e675 (diff) | |
download | spack-22d07b328e4c06f69a573a5377ec509a71a6ac82.tar.gz spack-22d07b328e4c06f69a573a5377ec509a71a6ac82.tar.bz2 spack-22d07b328e4c06f69a573a5377ec509a71a6ac82.tar.xz spack-22d07b328e4c06f69a573a5377ec509a71a6ac82.zip |
New package: ovito (#28787)
-rwxr-xr-x | var/spack/repos/builtin/packages/ovito/package.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/ovito/package.py b/var/spack/repos/builtin/packages/ovito/package.py new file mode 100755 index 0000000000..10c76d4062 --- /dev/null +++ b/var/spack/repos/builtin/packages/ovito/package.py @@ -0,0 +1,24 @@ +# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack import * + + +class Ovito(Package): + """OVITO is a scientific visualization and analysis software for atomistic +and particle simulation data. It helps scientists gain better insights into +materials phenomena and physical processes. OVITO Basic is freely available +for all major platforms under an open source license. It has served in a +growing number of computational simulation studies as a powerful tool to +analyze, understand and illustrate simulation results.""" + + homepage = "https://www.ovito.org" + url = "https://www.ovito.org/download/master/ovito-basic-3.6.0-x86_64.tar.xz" + + version('3.6.0', '6ac43a3a39b1ec3cccab577602756a8b7010cc1f1f046c4f6a939590d12f0339') + + def install(self, spec, prefix): + # Once we've unpacked the tarball, copy it's contents to the prefix + copy_tree('.', prefix) |