2010-12-11 18:25:06 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Sshuttle < Formula
|
2010-12-11 18:25:06 +00:00
|
|
|
homepage 'https://github.com/apenwarr/sshuttle'
|
2013-03-24 19:24:18 +00:00
|
|
|
url 'https://github.com/apenwarr/sshuttle/archive/sshuttle-0.61.tar.gz'
|
2013-09-05 11:59:57 +00:00
|
|
|
sha1 '05551cdc78e866d983470ba4084beb206bacebd8'
|
2010-12-11 18:25:06 +00:00
|
|
|
|
2011-05-27 05:02:55 +00:00
|
|
|
head 'https://github.com/apenwarr/sshuttle.git'
|
2010-12-11 18:25:06 +00:00
|
|
|
|
|
|
|
def install
|
2013-03-14 16:27:52 +00:00
|
|
|
# Building the docs requires installing
|
|
|
|
# markdown & BeautifulSoup Python modules
|
|
|
|
# so we don't.
|
2010-12-11 18:25:06 +00:00
|
|
|
libexec.install Dir['*']
|
2012-08-07 18:20:52 +00:00
|
|
|
bin.write_exec_script libexec/'sshuttle'
|
2010-12-11 18:25:06 +00:00
|
|
|
end
|
|
|
|
end
|