tcptrace 6.6.7
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
739ace3e07
commit
694a1a4ac0
1 changed files with 16 additions and 0 deletions
16
Formula/tcptrace.rb
Normal file
16
Formula/tcptrace.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
require 'formula'
|
||||
|
||||
class Tcptrace < Formula
|
||||
url 'http://www.tcptrace.org/download/tcptrace-6.6.7.tar.gz'
|
||||
homepage 'http://www.tcptrace.org/'
|
||||
md5 '68128dc1817b866475e2f048e158f5b9'
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}"
|
||||
system "make tcptrace"
|
||||
|
||||
bin.install 'tcptrace'
|
||||
man1.install 'tcptrace.man' => 'tcptrace.1'
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue