diff options
author | Christoph Junghans <junghans@lanl.gov> | 2024-02-18 09:43:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-18 08:43:56 -0800 |
commit | f49a5519b7671756c92973a4ffcd9cbd94aa5317 (patch) | |
tree | fee9b5c50ac13d0a141a19a4281e7b28fb9fbbfe | |
parent | e07a6f51dca200fb47966c921e5bc4582bf01d3e (diff) | |
download | spack-f49a5519b7671756c92973a4ffcd9cbd94aa5317.tar.gz spack-f49a5519b7671756c92973a4ffcd9cbd94aa5317.tar.bz2 spack-f49a5519b7671756c92973a4ffcd9cbd94aa5317.tar.xz spack-f49a5519b7671756c92973a4ffcd9cbd94aa5317.zip |
byfl: initial commit (#42731)
-rw-r--r-- | var/spack/repos/builtin/packages/byfl/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/byfl/package.py b/var/spack/repos/builtin/packages/byfl/package.py new file mode 100644 index 0000000000..ac79bc85f0 --- /dev/null +++ b/var/spack/repos/builtin/packages/byfl/package.py @@ -0,0 +1,21 @@ +# 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 Byfl(CMakePackage): + """Compiler-based Application Analysis""" + + homepage = "https://github.com/lanl/Byfl" + url = "https://github.com/lanl/Byfl/archive/refs/tags/v1.8.0.tar.gz" + + maintainers("spakin", "ltang85") + + license("BSD-3-Clause") + + version("1.8.0", sha256="45a9640ba2d77153a425c72349c18b124754123b30c411707b71abd217bbfce0") + + depends_on("llvm@:13.9999") |