homebrew-core/Formula/connect.rb
Jack Nagel 6b0f64e8b4 Use ENV.cc and ENV.cxx where appropriate
Cursory testing shows that these all build with llvm and those that have
binaries work. Formulae should be marked 'fails_with_llvm' if there are
issues found later.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-12-09 17:50:34 -06:00

13 lines
355 B
Ruby

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