homebrew-core/Formula/sshuttle.rb

18 lines
477 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Sshuttle < Formula
homepage 'https://github.com/apenwarr/sshuttle'
url 'https://github.com/apenwarr/sshuttle/archive/sshuttle-0.61.tar.gz'
sha1 '05551cdc78e866d983470ba4084beb206bacebd8'
2011-05-27 05:02:55 +00:00
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['*']
2012-08-07 18:20:52 +00:00
bin.write_exec_script libexec/'sshuttle'
end
end