blob: 40981430a0a40ee3395a05e00c1af06d07022e27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Sshuttle < Formula
url 'https://github.com/apenwarr/sshuttle/zipball/sshuttle-0.60'
homepage 'https://github.com/apenwarr/sshuttle'
md5 'a3910e54fddb935cd9867f697270534f'
head 'https://github.com/apenwarr/sshuttle.git'
def install
libexec.install Dir['*']
(bin+'sshuttle').write <<-EOS.undent
#!/bin/bash
exec #{libexec}/sshuttle "$@"
EOS
end
end
|