diff options
| author | David Kendal | 2013-03-08 21:08:00 +0000 |
|---|---|---|
| committer | Adam Vandenberg | 2013-06-14 11:38:19 -0700 |
| commit | a02008e6474a86e76f1b691de2d1f0d08a1badd4 (patch) | |
| tree | 46b649b12ece62b5774f7087b27fcd433e103eac /Library/Formula/ucspi-tcp.rb | |
| parent | 44505addc6c96005b7bf53434b8bbd1c03b486f6 (diff) | |
| download | homebrew-a02008e6474a86e76f1b691de2d1f0d08a1badd4.tar.bz2 | |
ucspi-tcp 0.88
Closes #18342.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/ucspi-tcp.rb')
| -rw-r--r-- | Library/Formula/ucspi-tcp.rb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Library/Formula/ucspi-tcp.rb b/Library/Formula/ucspi-tcp.rb new file mode 100644 index 000000000..b2a1d5325 --- /dev/null +++ b/Library/Formula/ucspi-tcp.rb @@ -0,0 +1,24 @@ +require 'formula' + +class UcspiTcp < Formula + homepage 'http://cr.yp.to/ucspi-tcp.html' + url 'http://cr.yp.to/ucspi-tcp/ucspi-tcp-0.88.tar.gz' + sha1 '793b4189795b563085602c030dd8aa0d206ddc0e' + + def patches + "http://www.fefe.de/ucspi/ucspi-tcp-0.88-ipv6.diff19.bz2" + end + + def install + (buildpath/'conf-home').unlink + (buildpath/'conf-home').write prefix + + system "make" + system "make setup check" + share.install prefix/'man' + end + + def test + system "tcpserver" + end +end |
