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