summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/perl-ipc-run/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/perl-ipc-run/package.py')
-rw-r--r--var/spack/repos/builtin/packages/perl-ipc-run/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/perl-ipc-run/package.py b/var/spack/repos/builtin/packages/perl-ipc-run/package.py
new file mode 100644
index 0000000000..228d76877f
--- /dev/null
+++ b/var/spack/repos/builtin/packages/perl-ipc-run/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 PerlIpcRun(PerlPackage):
+ """IPC::Run allows you to run and interact with child processes using
+ files, pipes, and pseudo-ttys. Both system()-style and scripted usages are
+ supported and may be mixed. Likewise, functional and OO API styles are both
+ supported and may be mixed."""
+
+ homepage = "https://metacpan.org/pod/IPC::Run"
+ url = "https://cpan.metacpan.org/authors/id/T/TO/TODDR/IPC-Run-20180523.0.tar.gz"
+
+ version('20180523.0', sha256='3850d7edf8a4671391c6e99bb770698e1c45da55b323b31c76310913349b6c2f')
+
+ depends_on('perl-io-tty', type=('build', 'run'))
+ depends_on('perl-readonly', type='build')