diff options
Diffstat (limited to 'Library/Formula/sshuttle.rb')
| -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 |
