summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/bbcp/package.py
blob: e9baa5ccf490a031f86a5d63dbd91786770f88cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from spack import *

class Bbcp(Package):
    """Securely and quickly copy data from source to target"""
    homepage = "http://www.slac.stanford.edu/~abh/bbcp/"

    version('git', git='http://www.slac.stanford.edu/~abh/bbcp/bbcp.git', branch="master")

    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)