summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/regale/package.py
blob: 8cb597774053f1d0780c3c5e93da777cf2d98636 (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
24
25
26
27
28
29
30
31
# 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 Regale(CMakePackage):
    """REGALE library is a C/C++ library developed in the European Project
    REGALE used to allow standard communication among HPC power stack tools."""

    homepage = "https://regale-project.eu/"
    url = "https://gricad-gitlab.univ-grenoble-alpes.fr/regale/tools/regale/-/archive/v1.0/regale-v1.0.tar.gz"

    license("Apache-2.0")

    version("1.0", sha256="894b0927372467e765049e79b855a9a277def65638013f68a1f2b6e837e35663")

    depends_on("eprosima-fastdds")

    variant("examples", default=False, description="Build examples")
    variant("shared", default=True, description="Build shared libraries")

    def cmake_args(self):
        args = [
            self.define_from_variant("REGALE_EXAMPLES", "examples"),
            self.define_from_variant("BUILD_SHARED_LIBS", "shared"),
        ]

        return args