98ef1a6c1e
http://groups.google.com/group/sshuttle/browse_thread/thread/33823653f4377a2a Closes Homebrew/homebrew#9596. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
17 lines
410 B
Ruby
17 lines
410 B
Ruby
require 'formula'
|
|
|
|
class Sshuttle < Formula
|
|
url 'https://github.com/apenwarr/sshuttle/zipball/sshuttle-0.60'
|
|
homepage 'https://github.com/apenwarr/sshuttle'
|
|
md5 'a3910e54fddb935cd9867f697270534f'
|
|
|
|
head 'https://github.com/apenwarr/sshuttle.git'
|
|
|
|
def install
|
|
libexec.install Dir['*']
|
|
(bin+'sshuttle').write <<-EOS.undent
|
|
#!/bin/bash
|
|
exec #{libexec}/sshuttle "$@"
|
|
EOS
|
|
end
|
|
end
|