summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/cppcoro/package.py
blob: ac998ace01c62e423dc2d602411d247ab89e2bf2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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 Cppcoro(CMakePackage):
    """A library of C++ coroutine abstractions."""

    homepage = "https://github.com/andreasbuhr/cppcoro"
    git = "https://github.com/andreasbuhr/cppcoro.git"

    maintainers("pbrady")

    license("MIT")

    version("develop", branch="master")
    version("2021-01-13", commit="7cc9433436fe8f2482138019cfaafce8e1d7a896")

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