Add new package: rinetd (#18303)
This commit is contained in:
parent
a206d2aebd
commit
654f52bc08
27
var/spack/repos/builtin/packages/rinetd/package.py
Normal file
27
var/spack/repos/builtin/packages/rinetd/package.py
Normal file
@ -0,0 +1,27 @@
|
||||
# Copyright 2013-2020 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 Rinetd(AutotoolsPackage):
|
||||
"""This program is used to efficiently redirect connections
|
||||
from one IP address/port combination to another."""
|
||||
|
||||
homepage = "https://github.com/samhocevar/rinetd"
|
||||
url = "https://github.com/samhocevar/rinetd/archive/v0.70.tar.gz"
|
||||
|
||||
version('0.70', sha256='e69538e9d1fdc1ba5cc24733a52c571568e9cad0876c09144aa1eaa71e13fba5')
|
||||
version('0.63', sha256='1f0e8cda524b8f4811a876e69e16d11f12c33a63d00b55c66e2129f87444000c')
|
||||
|
||||
depends_on('autoconf', type='build')
|
||||
depends_on('automake', type='build')
|
||||
|
||||
def setup_run_environment(self, env):
|
||||
env.prepend_path('PATH', self.prefix.sbin)
|
||||
|
||||
def autoreconf(self, spec, prefix):
|
||||
bash = which('bash')
|
||||
bash('./bootstrap')
|
Loading…
Reference in New Issue
Block a user