summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/codar-cheetah/package.py
blob: a7a8dca46ac55e8c8c99a66d9ee32b7e5c02f3ee (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
24
25
# Copyright 2013-2019 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 CodarCheetah(Package):
    """CODAR Cheetah:
    The CODAR Experiment Harness for Exascale science applications.
    """

    homepage = "https://github.com/CODARcode/cheetah"
    url      = "https://github.com/CODARcode/cheetah/archive/v0.1.tar.gz"
    git      = "https://github.com/CODARcode/cheetah.git"

    version('develop', branch='master')
    version('0.1', sha256='281564f8ae57a70ce28457616fde26247ea4efb29e55c7bf89a782a259a1a028')

    depends_on('python@3:', type=('build', 'run'))
    depends_on('savanna')

    def install(self, spec, prefix):
        install_tree('.', prefix)