diff options
| author | Torsten Curdt | 2011-03-21 23:38:57 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2011-03-26 08:48:35 -0700 |
| commit | 879b1e4261e46a98540542365f8b383b82fbe104 (patch) | |
| tree | c48e5b6fdb0dc13f67c6c0880a245ae89bc85089 /Library/Formula | |
| parent | 2b178b797d917f9b70e44fe050bf52d411a9e53d (diff) | |
| download | homebrew-879b1e4261e46a98540542365f8b383b82fbe104.tar.bz2 | |
added tcpstat
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/tcpstat.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Library/Formula/tcpstat.rb b/Library/Formula/tcpstat.rb new file mode 100644 index 000000000..f45cd9870 --- /dev/null +++ b/Library/Formula/tcpstat.rb @@ -0,0 +1,11 @@ +require 'formula' + +class Tcpstat < Formula + head 'git://github.com/jtt/tcpstat.git' + homepage 'http://github.com/jtt/tcpstat' + + def install + system "make" + bin.install 'tcpstat' + end +end |
