2010-05-07 22:39:03 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Socat < Formula
|
2010-05-07 22:39:03 +00:00
|
|
|
homepage 'http://www.dest-unreach.org/socat/'
|
2012-03-05 20:32:26 +00:00
|
|
|
url 'http://www.dest-unreach.org/socat/download/socat-1.7.2.0.tar.bz2'
|
|
|
|
md5 'eb563dd00b9d39a49fb62a677fc941fe'
|
2010-05-07 22:39:03 +00:00
|
|
|
|
2011-11-25 21:52:47 +00:00
|
|
|
depends_on 'readline'
|
|
|
|
|
2012-03-05 20:32:26 +00:00
|
|
|
def patches
|
|
|
|
# see https://trac.macports.org/ticket/32044; socat devs are aware
|
|
|
|
{ :p0 => "https://trac.macports.org/export/90442/trunk/dports/sysutils/socat/files/patch-xioexit.c.diff" }
|
|
|
|
end
|
2011-06-12 23:38:51 +00:00
|
|
|
|
2012-03-05 20:32:26 +00:00
|
|
|
def install
|
|
|
|
ENV.enable_warnings # -w causes build to fail
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
|
2010-05-07 22:39:03 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|