d2a0c4a2d3
Transparent redirector of any TCP connection to proxy https://github.com/darkk/redsocks Closes Homebrew/homebrew#9987. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
284 B
Ruby
14 lines
284 B
Ruby
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
|