summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/boostmplcartesianproduct/package.py
blob: b4f8acb0eec924795dd143fb8a82a67489e06939 (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-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 Boostmplcartesianproduct(Package):
    """Cartesian_product is an extension to the Boost.MPL library and as such
    requires a version of the Boost libraries on your system.
    """

    homepage = "http://www.organicvectory.com/index.php?option=com_content&view=article&id=75:boostmplcartesianproduct&catid=42:boost&Itemid=78"
    url = "https://github.com/quinoacomputing/BoostMPLCartesianProduct/tarball/20161205"

    version("20161205", sha256="1fa8e367e4dc545b34016bf57d802858ce38baf40aff20f7c93b329895a18572")

    def install(self, spec, prefix):
        install_tree("boost/mpl", join_path(prefix.include, "boost", "mpl"))