blob: fd3a10afd24b073daf45ef6177048edb46612841 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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
|