homebrew-core/Formula/sshuttle.rb
Alexey Palazhchenko 5bfaf84483 sshuttle 0.54
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-08-22 20:56:08 -07:00

18 lines
427 B
Ruby

require 'formula'
class Sshuttle < Formula
url 'https://github.com/apenwarr/sshuttle/zipball/sshuttle-0.54'
homepage 'https://github.com/apenwarr/sshuttle'
md5 'ccc36404fcda1cf411e4ec2ed37927e6'
version '0.54'
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