# 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 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)