homebrew-core/Formula/tcptrack.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

21 lines
841 B
Ruby

class Tcptrack < Formula
desc "Monitor status of TCP connections on a network interface"
homepage "http://www.rhythm.cx/~steve/devel/tcptrack/"
url "http://ftp.de.debian.org/debian/pool/main/t/tcptrack/tcptrack_1.4.2.orig.tar.gz"
sha256 "6607b1e1c778c49d3e8795e119065cf66eb2db28b3255dbc56b1612527107049"
def install
ENV.libstdcxx
# Fix IPv6 on MacOS. The patch was sent by email to the maintainer
# (tcptrack2@s.rhythm.cx) on 2010-11-24 for inclusion.
# Still not fixed in 1.4.2 - @adamv
inreplace "src/IPv6Address.cc", "s6_addr16", "__u6_addr.__u6_addr16"
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make", "install"
end
def caveats
"Run tcptrack as root or via sudo in order for the program to obtain permissions on the network interface."
end
end