blob: 1d1979e2b88457aa51920312133d7d2a76bb8968 (
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 '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
|