16 lines
437 B
Python
16 lines
437 B
Python
# Copyright 2013-2020 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)
|
|
|
|
|
|
class Hdf5(Package):
|
|
homepage = "http://www.llnl.gov"
|
|
url = "http://www.llnl.gov/hdf5-1.0.tar.gz"
|
|
|
|
version(2.3, 'foobarbaz')
|
|
|
|
variant('mpi', default=True, description='Enable mpi')
|
|
|
|
depends_on('mpi', when='+mpi')
|