diff options
author | darmac <darmac@163.com> | 2019-11-30 02:19:13 +0800 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-11-29 12:19:13 -0600 |
commit | 0f464b8d9f4937fa2f772a84d86e15591d704898 (patch) | |
tree | b56ea2e04b8447b55b31425f05d9c35a96b3dce6 | |
parent | e865856c841aff4ccca100fe215bc20997b738af (diff) | |
download | spack-0f464b8d9f4937fa2f772a84d86e15591d704898.tar.gz spack-0f464b8d9f4937fa2f772a84d86e15591d704898.tar.bz2 spack-0f464b8d9f4937fa2f772a84d86e15591d704898.tar.xz spack-0f464b8d9f4937fa2f772a84d86e15591d704898.zip |
add new package : pipework (#13934)
-rw-r--r-- | var/spack/repos/builtin/packages/pipework/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/pipework/package.py b/var/spack/repos/builtin/packages/pipework/package.py new file mode 100644 index 0000000000..31b9341e8e --- /dev/null +++ b/var/spack/repos/builtin/packages/pipework/package.py @@ -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) |