summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorDavid Beckingsale <davidbeckingsale@gmail.com>2020-10-26 10:15:55 -0700
committerGitHub <noreply@github.com>2020-10-26 12:15:55 -0500
commit7ca1f6c5d51f5e2fc582603012c3ca5a053ee4eb (patch)
tree882a0fb7be87b2228c8207c97b156d9b6ca26d61 /var
parentf921bcbe0b01f63acfc692f9b6cc6751ffc1fbd1 (diff)
downloadspack-7ca1f6c5d51f5e2fc582603012c3ca5a053ee4eb.tar.gz
spack-7ca1f6c5d51f5e2fc582603012c3ca5a053ee4eb.tar.bz2
spack-7ca1f6c5d51f5e2fc582603012c3ca5a053ee4eb.tar.xz
spack-7ca1f6c5d51f5e2fc582603012c3ca5a053ee4eb.zip
Add BLT package (#19410)
* Add BLT package * Switch install function Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Add type='run' to cmake dependency Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Add git attribute to BLT Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/blt/package.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/blt/package.py b/var/spack/repos/builtin/packages/blt/package.py
new file mode 100644
index 0000000000..430c82affd
--- /dev/null
+++ b/var/spack/repos/builtin/packages/blt/package.py
@@ -0,0 +1,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)