summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authordarmac <darmac@163.com>2019-11-30 02:19:13 +0800
committerAdam J. Stewart <ajstewart426@gmail.com>2019-11-29 12:19:13 -0600
commit0f464b8d9f4937fa2f772a84d86e15591d704898 (patch)
treeb56ea2e04b8447b55b31425f05d9c35a96b3dce6 /var
parente865856c841aff4ccca100fe215bc20997b738af (diff)
downloadspack-0f464b8d9f4937fa2f772a84d86e15591d704898.tar.gz
spack-0f464b8d9f4937fa2f772a84d86e15591d704898.tar.bz2
spack-0f464b8d9f4937fa2f772a84d86e15591d704898.tar.xz
spack-0f464b8d9f4937fa2f772a84d86e15591d704898.zip
add new package : pipework (#13934)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/pipework/package.py21
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)