summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/sicm/package.py
blob: 67db2e2a5a06faeb6c1f436e5dcf8e88c1508719 (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
# Copyright 2013-2023 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 Sicm(CMakePackage):
    """SICM: Simplified Interface to Complex Memory."""

    homepage = "https://github.com/lanl/SICM/"
    git = "https://github.com/lanl/SICM.git"

    license("BSD-2-Clause")

    version("master")

    depends_on("jemalloc jemalloc_prefix=je_")
    depends_on("numactl")

    def cmake_args(self):
        return []