
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
32 lines
1003 B
Python
32 lines
1003 B
Python
# Copyright 2013-2021 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)
|
|
|
|
from spack import *
|
|
|
|
|
|
class Bbcp(Package):
|
|
"""Securely and quickly copy data from source to target"""
|
|
|
|
homepage = "https://www.slac.stanford.edu/~abh/bbcp/"
|
|
git = "https://www.slac.stanford.edu/~abh/bbcp/bbcp.git"
|
|
|
|
version('master', branch='master')
|
|
|
|
depends_on('zlib')
|
|
depends_on('openssl')
|
|
depends_on('libnsl')
|
|
|
|
def install(self, spec, prefix):
|
|
cd("src")
|
|
make()
|
|
# BBCP wants to build the executable in a directory whose name depends
|
|
# on the system type
|
|
makesname = Executable("../MakeSname")
|
|
bbcp_executable_path = "../bin/%s/bbcp" % makesname(
|
|
output=str).rstrip("\n")
|
|
destination_path = "%s/bin/" % prefix
|
|
mkdirp(destination_path)
|
|
install(bbcp_executable_path, destination_path)
|