add new package : pipework (#13934)

This commit is contained in:
darmac 2019-11-30 02:19:13 +08:00 committed by Adam J. Stewart
parent e865856c84
commit 0f464b8d9f

View file

@ -0,0 +1,21 @@
# Copyright 2013-2019 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 Pipework(Package):
"""
Pipework lets you connect together containers in arbitrarily complex
scenarios.
"""
homepage = "https://github.com/jpetazzo/pipework"
git = "https://github.com/jpetazzo/pipework.git"
version('master', branch='master')
def install(self, spec, prefix):
install_tree('.', prefix)