diff options
| author | Michael Vigor | 2012-02-05 13:53:52 +0000 | 
|---|---|---|
| committer | Adam Vandenberg | 2012-03-20 22:28:49 -0700 | 
| commit | f307c367d18f4455aa32f76059caa95cff4afbc6 (patch) | |
| tree | 36b751ea829331efc377cb0a8c60abbc00da9e55 | |
| parent | 45f31c82926ab25eec5a7c85896f336cdd5ff625 (diff) | |
| download | homebrew-f307c367d18f4455aa32f76059caa95cff4afbc6.tar.bz2 | |
Redsocks 0.3
Transparent redirector of any TCP connection to proxy
https://github.com/darkk/redsocks
Closes #9987.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/redsocks.rb | 14 | 
1 files changed, 14 insertions, 0 deletions
| diff --git a/Library/Formula/redsocks.rb b/Library/Formula/redsocks.rb new file mode 100644 index 000000000..b2c7662f2 --- /dev/null +++ b/Library/Formula/redsocks.rb @@ -0,0 +1,14 @@ +require 'formula' + +class Redsocks < Formula +  homepage 'http://darkk.net.ru/redsocks' +  url 'https://github.com/darkk/redsocks/tarball/release-0.3' +  md5 '5200ff845cf32fccf55937fb3d5ab007' + +  depends_on 'libevent' + +  def install +    system 'make' +    bin.install 'redsocks' +  end +end | 
