Merge pull request #1570 from eschnett/eschnett/hdf5-blosc-2

hdf5-blosc: Correct download url
This commit is contained in:
Todd Gamblin 2016-08-21 12:12:09 -07:00 committed by GitHub
commit fbe76c41fd

View File

@ -49,9 +49,10 @@ def _install_shlib(name, src, dst):
class Hdf5Blosc(Package):
"""Blosc filter for HDF5"""
homepage = "https://github.com/Blosc/hdf5-blosc"
url = "https://github.com/Blosc/hdf5-blosc/archive/master.zip"
url = "https://github.com/Blosc/hdf5-blosc"
version('master', branch='master')
version('master', git='https://github.com/Blosc/hdf5-blosc',
branch='master')
depends_on("c-blosc")
depends_on("hdf5")