summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/opendx/package.py
blob: 27a7052f30ae2edce73bb1c53b53b6537b53c490 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 2013-2024 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.package import *


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")