balance 3.54

Balance, a simple TCP load balancer

Balance is handy because it requires no configuration. Just a few
command line args and you have a running TCP proxy with or without load
balancing.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Lee Jensen 2011-03-07 16:07:24 -07:00 committed by Adam Vandenberg
parent dd8bb6a408
commit 177c1b79d7

14
Formula/balance.rb Normal file
View file

@ -0,0 +1,14 @@
require 'formula'
class Balance <Formula
url 'http://www.inlab.de/balance-3.54.tar.gz'
homepage 'http://www.inlab.de/balance.html'
md5 '99854615cc58ceb2c5bbf29e35d18018'
def install
system "make"
bin.install "balance"
man1.install "balance.1"
end
end