summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/rinetd/package.py
blob: bc0224853999b1d1094900c13f4872ff483343de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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')