Change homepage, explicitly disable

This commit is contained in:
Adam J. Stewart 2016-04-24 17:14:33 -05:00
parent e7d2fa7084
commit a7ffffc336

View File

@ -5,7 +5,7 @@ class Ior(Package):
"""The IOR software is used for benchmarking parallel file systems """The IOR software is used for benchmarking parallel file systems
using POSIX, MPI-IO, or HDF5 interfaces.""" using POSIX, MPI-IO, or HDF5 interfaces."""
homepage = "http://www.nersc.gov/users/computational-systems/cori/nersc-8-procurement/trinity-nersc-8-rfp/nersc-8-trinity-benchmarks/ior/" homepage = "https://github.com/LLNL/ior"
url = "https://github.com/LLNL/ior/archive/3.0.1.tar.gz" url = "https://github.com/LLNL/ior/archive/3.0.1.tar.gz"
version('3.0.1', '71150025e0bb6ea1761150f48b553065') version('3.0.1', '71150025e0bb6ea1761150f48b553065')
@ -28,9 +28,13 @@ def install(self, spec, prefix):
if '+hdf5' in spec: if '+hdf5' in spec:
config_args.append('--with-hdf5') config_args.append('--with-hdf5')
else:
config_args.append('--without-hdf5')
if '+ncmpi' in spec: if '+ncmpi' in spec:
config_args.append('--with-ncmpi') config_args.append('--with-ncmpi')
else:
config_args.append('--without-ncmpi')
configure(*config_args) configure(*config_args)