hdf5-blosc: Correct download url

This commit is contained in:
Erik Schnetter 2016-08-21 14:39:29 -04:00
parent 55b1182a4c
commit 78685addbb

View file

@ -49,9 +49,10 @@ def _install_shlib(name, src, dst):
class Hdf5Blosc(Package): class Hdf5Blosc(Package):
"""Blosc filter for HDF5""" """Blosc filter for HDF5"""
homepage = "https://github.com/Blosc/hdf5-blosc" 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("c-blosc")
depends_on("hdf5") depends_on("hdf5")