summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/kvasir-mpl/package.py
blob: d1627d064c87b056b1620920a1dd905a328e541a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 KvasirMpl(Package):
    """Kvasir metaprogramming library"""

    homepage = "https://github.com/kvasir-io/mpl"
    git = "https://github.com/kvasir-io/mpl.git"

    license("BSL-1.0")

    version("develop", branch="development")

    def install(self, spec, prefix):
        install_tree("src", prefix.include)