2c6b2b64fd
see http://www.dest-unreach.org/socat/contrib/socat-secadv2.html Closes Homebrew/homebrew#3804. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
13 lines
391 B
Ruby
13 lines
391 B
Ruby
require 'formula'
|
|
|
|
class Socat <Formula
|
|
url 'http://www.dest-unreach.org/socat/download/socat-1.7.1.3.tar.bz2'
|
|
homepage 'http://www.dest-unreach.org/socat/'
|
|
md5 '2081987fb0cb0290b8105574058cb329'
|
|
|
|
def install
|
|
ENV.enable_warnings # -wall causes build to fail
|
|
system "./configure", "--disable-debug", "--prefix=#{prefix}", "--mandir=#{man}"
|
|
system "make install"
|
|
end
|
|
end
|