summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/chaco/package.py
blob: 08f4ade01309b59fcdee7bdf8dc970c4feec623c (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
# 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 Chaco(CMakePackage):
    """Graph partitioning library"""

    homepage = "https://gitlab.com/truchas/tpl-forks/chaco"
    git = "https://gitlab.com/truchas/tpl-forks/chaco.git"

    maintainers("pbrady", "zjibben")

    license("LGPL-2.1-or-later")

    version("develop", branch="truchas")
    version("2020-07-16", commit="92a877b381933d12b02507413897f696d81b4682", preferred=True)

    variant("shared", default=True, description="build shared library")

    depends_on("cmake@3.16:", type="build")

    def cmake_args(self):
        opts = [self.define_from_variant("BUILD_SHARED_LIBS", "shared")]
        if self.spec.satisfies("%apple-clang@12:"):
            opts.append(self.define("CMAKE_C_FLAGS", "-Wno-error=implicit-function-declaration"))
        return opts