Create SALT package.py (#48758)

* Create SALT package.py

Added a package for the SALT Source AnaLysis Toolkit
@zbeekman

* [@spackbot] updating style on behalf of wspear

* Update package.py

Line wrap

---------

Co-authored-by: wspear <wspear@users.noreply.github.com>
This commit is contained in:
wspear 2025-01-29 13:47:48 -08:00 committed by GitHub
parent 5904834295
commit b5f9dea6d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,23 @@
# Copyright Spack Project Developers. See COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack.package import *
class Salt(CMakePackage):
"""SALT: A next generation LLVM-based Source Analysis Toolkit for performance instrumentation
of HPC applications"""
homepage = "https://github.com/ParaToolsInc/salt"
url = "https://github.com/ParaToolsInc/salt/archive/refs/tags/v0.2.0.tar.gz"
git = "https://github.com/ParaToolsInc/salt.git"
maintainers("zbeekman", "wspear")
license("Apache-2.0", checked_by="wspear")
version("master", branch="master")
version("0.2.0", sha256="55c80f9d0591752b1e5b40e924718dc28f928ee0a3c7008adec3feab1280c57f")
depends_on("llvm+clang+flang@19:")