2010-12-11 18:25:06 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Sshuttle < Formula
|
2011-08-21 19:35:18 +00:00
|
|
|
url 'https://github.com/apenwarr/sshuttle/zipball/sshuttle-0.54'
|
2010-12-11 18:25:06 +00:00
|
|
|
homepage 'https://github.com/apenwarr/sshuttle'
|
2011-08-21 19:35:18 +00:00
|
|
|
md5 'ccc36404fcda1cf411e4ec2ed37927e6'
|
|
|
|
version '0.54'
|
2010-12-11 18:25:06 +00:00
|
|
|
|
2011-05-27 05:02:55 +00:00
|
|
|
head 'https://github.com/apenwarr/sshuttle.git'
|
2010-12-11 18:25:06 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
libexec.install Dir['*']
|
|
|
|
(bin+'sshuttle').write <<-EOS.undent
|
|
|
|
#!/bin/bash
|
2011-04-06 06:02:09 +00:00
|
|
|
exec #{libexec}/sshuttle "$@"
|
2010-12-11 18:25:06 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|