homebrew-core/Formula/sshuttle.rb
Alan Jenkins 99060e02a9 sshuttle: fix checksum
Closes Homebrew/homebrew#22334.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-09-05 11:08:37 -05:00

17 lines
477 B
Ruby

require 'formula'
class Sshuttle < Formula
homepage 'https://github.com/apenwarr/sshuttle'
url 'https://github.com/apenwarr/sshuttle/archive/sshuttle-0.61.tar.gz'
sha1 '05551cdc78e866d983470ba4084beb206bacebd8'
head 'https://github.com/apenwarr/sshuttle.git'
def install
# Building the docs requires installing
# markdown & BeautifulSoup Python modules
# so we don't.
libexec.install Dir['*']
bin.write_exec_script libexec/'sshuttle'
end
end