Update the bbcp package (#17436)
* bbcp: Update the URLs to use HTTPS. The HTTP URLs do not work anymore. * bbcp: Add missing libnsl dependency. * bbcp: Rename the git-based version to match the branch name. Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
parent
7269a5bf51
commit
ea546425e8
1 changed files with 4 additions and 3 deletions
|
@ -9,13 +9,14 @@
|
|||
class Bbcp(Package):
|
||||
"""Securely and quickly copy data from source to target"""
|
||||
|
||||
homepage = "http://www.slac.stanford.edu/~abh/bbcp/"
|
||||
git = "http://www.slac.stanford.edu/~abh/bbcp/bbcp.git"
|
||||
homepage = "https://www.slac.stanford.edu/~abh/bbcp/"
|
||||
git = "https://www.slac.stanford.edu/~abh/bbcp/bbcp.git"
|
||||
|
||||
version('git', branch='master')
|
||||
version('master', branch='master')
|
||||
|
||||
depends_on('zlib')
|
||||
depends_on('openssl')
|
||||
depends_on('libnsl')
|
||||
|
||||
def install(self, spec, prefix):
|
||||
cd("src")
|
||||
|
|
Loading…
Reference in a new issue