diff options
| author | Lee Jensen | 2011-03-07 16:07:24 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-03-07 15:16:43 -0800 |
| commit | 2a5216ba565e2517da7f0e11fb13b96614db7832 (patch) | |
| tree | b6851ec7befdefbd8dc243ef438bcb3a51d642a7 /Library/Formula | |
| parent | 18d5d1d651104b6a77c7f39947c1aa19f8a25289 (diff) | |
| download | homebrew-2a5216ba565e2517da7f0e11fb13b96614db7832.tar.bz2 | |
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>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/balance.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/balance.rb b/Library/Formula/balance.rb new file mode 100644 index 000000000..d7fcd1f36 --- /dev/null +++ b/Library/Formula/balance.rb @@ -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 |
