blob: f04eb7d7a87c3b1abed44240cf4ca6814e71ff95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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
|