summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/mpark-variant/package.py
blob: ad1704d6f7229fd412a06696b4e31c21023f3e50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright 2013-2018 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 import *


class MparkVariant(CMakePackage):
    """C++17 `std::variant` for C++11/14/17"""

    homepage = "https://mpark.github.io/variant"
    url      = "https://github.com/mpark/variant/archive/v1.3.0.tar.gz"
    maintainers = ['ax3l']

    version('1.3.0', '368b7d6f1a07bd6ee26ff518258dc71c')

    conflicts('%gcc@:4.7')
    conflicts('%clang@:3.5')