aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/connect.rb
blob: 31e4dee66136c469c618bc0dd37673c39c251095 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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