aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/connect.rb
blob: 1c8dcb7f0ca9b88b59840629717a522de699e05c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Connect < Formula
  url 'http://www.meadowy.org/~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 "#{ENV.cc}", "connect.c", "-o", "connect", "-lresolv"
    bin.install "connect"
  end
end