diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2020-04-01 13:30:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-01 13:30:03 -0500 |
commit | 64b14b64c00bc6885acc1ff4d9b76898f66a8a86 (patch) | |
tree | 59c0da4c9becd5e222a57d5e574d10427e4bca91 /var | |
parent | 6ad717cc9df8799a56d6a126180cbc380f4e57c1 (diff) | |
download | spack-64b14b64c00bc6885acc1ff4d9b76898f66a8a86.tar.gz spack-64b14b64c00bc6885acc1ff4d9b76898f66a8a86.tar.bz2 spack-64b14b64c00bc6885acc1ff4d9b76898f66a8a86.tar.xz spack-64b14b64c00bc6885acc1ff4d9b76898f66a8a86.zip |
OpenDX: add new package (#15737)
Diffstat (limited to 'var')
-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') |