diff options
| author | Adam Vandenberg | 2010-12-11 10:25:06 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2010-12-11 10:25:06 -0800 |
| commit | b74eef400090b572ee0eeeb0ab8cd32f56b4e790 (patch) | |
| tree | e4581f056a1b0b36ba6bf4ce818b93f7644e9b07 | |
| parent | ff3b7b401272f881ec1047b960d776fe4335dca8 (diff) | |
| download | homebrew-b74eef400090b572ee0eeeb0ab8cd32f56b4e790.tar.bz2 | |
sshuttle 0.43 (and HEAD)
Transparent proxy server that works as a poor man's VPN. Forwards over ssh.
Doesn't require admin access. Works with Linux and MacOS, now including 10.6.
| -rw-r--r-- | Library/Formula/sshuttle.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/sshuttle.rb b/Library/Formula/sshuttle.rb new file mode 100644 index 000000000..c62cc5ab6 --- /dev/null +++ b/Library/Formula/sshuttle.rb @@ -0,0 +1,17 @@ +require 'formula' + +class Sshuttle <Formula + url 'https://github.com/apenwarr/sshuttle/tarball/sshuttle-0.43' + homepage 'https://github.com/apenwarr/sshuttle' + md5 '590352aa7cbaad90c8f46dab64b829f4' + + head 'git://github.com/apenwarr/sshuttle.git' + + def install + libexec.install Dir['*'] + (bin+'sshuttle').write <<-EOS.undent + #!/bin/bash + exec #{libexec}/main.py "$@" + EOS + end +end |
