ad2c79b40f
Closes Homebrew/homebrew#18705.
17 lines
477 B
Ruby
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 '557455c7c38653bcb3cbb5051026af7d954fec83'
|
|
|
|
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
|