homebrew-core/Formula/sshuttle.rb
Jason Dusek 02d9c98963 sshuttle: fix checksum
Closes Homebrew/homebrew#10188.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-02-14 18:57:43 -06:00

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 '000af679bca06e7ee40985a014858b06'
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