spack/var/spack/repos/builtin/packages/sicm/package.py
Caetano Melone 742d313ba8
Update E4S package tags (#50173)
Most E4S packages had the "e4s" tag in their recipes; this adds it to
the rest.

list: https://e4s.io/DocPortal.html
2025-04-28 08:25:36 +02:00

29 lines
666 B
Python

# Copyright Spack Project Developers. See COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack.package import *
class Sicm(CMakePackage):
"""SICM: Simplified Interface to Complex Memory."""
homepage = "https://github.com/lanl/SICM/"
git = "https://github.com/lanl/SICM.git"
tags = ["e4s"]
license("BSD-2-Clause")
version("master")
depends_on("c", type="build") # generated
depends_on("cxx", type="build") # generated
depends_on("fortran", type="build") # generated
depends_on("jemalloc jemalloc_prefix=je_")
depends_on("numactl")
def cmake_args(self):
return []