
Package repositories now look like this: top-level-dir/ repo.yaml packages/ libelf/ package.py mpich/ package.py ... This leaves room at the top level for additional metadata, source, per-repo configs, indexes, etc., and it makes it easy to see that something is a spack repo (just look for repo.yaml and packages).
18 lines
426 B
Python
18 lines
426 B
Python
from spack import *
|
|
|
|
class OptionalDepTest3(Package):
|
|
"""Depends on the optional-dep-test package"""
|
|
|
|
homepage = "http://www.example.com"
|
|
url = "http://www.example.com/optional-dep-test-3-1.0.tar.gz"
|
|
|
|
version('1.0', '0123456789abcdef0123456789abcdef')
|
|
|
|
variant('var', default=False)
|
|
|
|
depends_on('a', when='~var')
|
|
depends_on('b', when='+var')
|
|
|
|
def install(self, spec, prefix):
|
|
pass
|