diff options
-rw-r--r-- | var/spack/repos/builtin/packages/opendx/package.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/opendx/package.py b/var/spack/repos/builtin/packages/opendx/package.py new file mode 100644 index 0000000000..2cf5a9e5e3 --- /dev/null +++ b/var/spack/repos/builtin/packages/opendx/package.py @@ -0,0 +1,20 @@ +# Copyright 2013-2020 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) + + +class Opendx(AutotoolsPackage): + """Open Visualization Data Explorer.""" + + homepage = "https://github.com/Mwoolsey/OpenDX" + git = "https://github.com/Mwoolsey/OpenDX.git" + + version('master', branch='master') + + depends_on('motif') # lesstif also works, but exhibits odd behaviors + depends_on('gl') + + @run_before('autoreconf') + def distclean(self): + make('distclean') |