14 lines
361 B
Python
14 lines
361 B
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class AutotoolsConditionalVariantsTest(AutotoolsPackage):
|
|
homepage = "https://www.example.com"
|
|
has_code = False
|
|
version("1.0")
|
|
variant("example", default=True, description="nope", when="@2.0:")
|