homebrew-core/Formula/connect.rb
Sebastien Pahl 02c9de37da connect 1.100
connect is the simple relaying command to make network connection via
SOCKS and https proxy. It is mainly intended to be used as proxy command
of OpenSSH. You can make SSH session beyond the firewall with this
command.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-05-25 18:27:24 -07:00

13 lines
348 B
Ruby

require 'formula'
class Connect <Formula
url 'http://www.taiyo.co.jp/~gotoh/ssh/connect.c'
version '1.100'
homepage 'http://bent.latency.net/bent/git/goto-san-connect-1.85/src/connect.html'
md5 '5165e2fcd2cf58899f34878fe6b447c6'
def install
system "gcc", "connect.c", "-o", "connect", "-lresolv"
bin.install "connect"
end
end