c46bd47c55
Closes Homebrew/homebrew#22851. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
298 B
Ruby
12 lines
298 B
Ruby
require 'formula'
|
|
|
|
class Tcpsplit < Formula
|
|
homepage 'http://www.icir.org/mallman/software/tcpsplit/'
|
|
url 'http://www.icir.org/mallman/software/tcpsplit/tcpsplit-0.2.tar.gz'
|
|
sha1 '0d63392c4960078911b5716d74e4a7426f149a09'
|
|
|
|
def install
|
|
system 'make'
|
|
bin.install 'tcpsplit'
|
|
end
|
|
end
|