From 492525fda5e6f7a49a371bcde11412d85eba9102 Mon Sep 17 00:00:00 2001 From: Michael Kuhn Date: Mon, 7 Nov 2022 15:45:50 +0100 Subject: socat: new package (#33713) --- var/spack/repos/builtin/packages/socat/package.py | 31 +++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 var/spack/repos/builtin/packages/socat/package.py (limited to 'var') diff --git a/var/spack/repos/builtin/packages/socat/package.py b/var/spack/repos/builtin/packages/socat/package.py new file mode 100644 index 0000000000..3a01e8e5dd --- /dev/null +++ b/var/spack/repos/builtin/packages/socat/package.py @@ -0,0 +1,31 @@ +# Copyright 2013-2022 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.package import * + + +class Socat(AutotoolsPackage): + """socat is a relay for bidirectional data transfer between two independent + data channels. Each of these data channels may be a file, pipe, device + (serial line etc. or a pseudo terminal), a socket (UNIX, IP4, IP6 - raw, + UDP, TCP), an SSL socket, proxy CONNECT connection, a file descriptor + (stdin etc.), the GNU line editor (readline), a program, or a combination + of two of these. These modes include generation of "listening" sockets, + named pipes, and pseudo terminals.""" + + homepage = "http://www.dest-unreach.org/socat/" + url = "http://www.dest-unreach.org/socat/download/socat-1.7.4.4.tar.bz2" + + maintainers = ["michaelkuhn"] + + version("1.7.4.4", sha256="fbd42bd2f0e54a3af6d01bdf15385384ab82dbc0e4f1a5e153b3e0be1b6380ac") + + depends_on("openssl") + depends_on("readline") + depends_on("ncurses") + + def configure_args(self): + args = ["--disable-libwrap"] + return args -- cgit v1.2.3-60-g2f50