summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/blt/package.py
blob: 430c82affd99a35288a6b94ef35bc7469045723e (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
26
27
28
29
30
# 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)

from spack import *


class Blt(Package):
    """BLT is a streamlined CMake-based foundation for Building, Linking and
       Testing large-scale high performance computing (HPC) applications."""

    homepage = "https://github.com/LLNL/blt"
    url      = "https://github.com/LLNL/blt/archive/v0.3.6.tar.gz"
    git      = "https://github.com/LLNL/blt.git"

    maintainers = ['davidbeckingsale']

    version('develop', branch='develop')
    version('main', branch='main')
    version('0.3.6', sha256='6276317c29e7ff8524fbea47d9288ddb40ac06e9f9da5e878bf9011e2c99bf71')
    version('0.3.5', sha256='68a1c224bb9203461ae6f5ab0ff3c50b4a58dcce6c2d2799489a1811f425fb84')
    version('0.3.0', sha256='bb917a67cb7335d6721c997ba9c5dca70506006d7bba5e0e50033dd0836481a5')
    version('0.2.5', sha256='3a000f60194e47b3e5623cc528cbcaf88f7fea4d9620b3c7446ff6658dc582a5')
    version('0.2.0', sha256='c0cadf1269c2feb189e398a356e3c49170bc832df95e5564e32bdbb1eb0fa1b3')

    depends_on('cmake', type='run')

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