summaryrefslogblamecommitdiff
path: root/var/spack/repos/builtin.mock/packages/dependency-foo-bar/package.py
blob: 5d7f5e98170c78b1aba85d482f9d7b7ec5f20b2f (plain) (tree)
1
                                                                         


















                                                                         
# 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 DependencyFooBar(Package):
    """This package has a variant "bar", which is False by default, and
    variant "foo" which is True by default.
    """

    homepage = "http://www.example.com"
    url = "http://www.example.com/dependency-foo-bar-1.0.tar.gz"

    version("1.0", md5="1234567890abcdefg1234567890098765")

    variant("foo", default=True, description="")
    variant("bar", default=False, description="")