homebrew-core/Formula/sshuttle.rb
Chad Remesch 0de57c50c5 Upgrade Sshuttle to 0.43a in order to fix a crash
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-12-28 20:07:53 -08:00

18 lines
425 B
Ruby

require 'formula'
class Sshuttle <Formula
url 'https://github.com/apenwarr/sshuttle/tarball/sshuttle-0.43a'
homepage 'https://github.com/apenwarr/sshuttle'
md5 '51c736b890b9a7fcfc731e82f4279638'
version '0.43a'
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