New package: microsocks (#27859)

This commit is contained in:
Pat Riehecky 2021-12-21 18:55:15 -06:00 committed by GitHub
parent 433f743074
commit 522a7c8ee0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,31 @@
# Copyright 2013-2021 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 Microsocks(MakefilePackage):
"""Microsocks is a multithreaded, small, efficient SOCKS5 server.
It is a SOCKS5 service that you can run on your remote boxes to
tunnel connections through them, if for some reason SSH doesn't
cut it for you."""
homepage = "https://github.com/rofl0r/microsocks"
url = "https://github.com/rofl0r/microsocks/archive/refs/tags/v1.0.2.tar.gz"
git = "https://github.com/rofl0r/microsocks.git"
maintainers = ["jcpunk"]
version("develop", branch="master")
version("1.0.2", sha256="5ece77c283e71f73b9530da46302fdb4f72a0ae139aa734c07fe532407a6211a")
def flag_handler(self, name, flags):
if name == "cflags":
flags.append(self.compiler.c99_flag)
return (flags, None, None)
@property
def install_targets(self):
return ["prefix={0}".format(self.prefix), "install"]