aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sshuttle.rb
blob: 8fb7df01cf8630fb847fa9b6aa077307bedfb410 (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/zipball/sshuttle-0.53'
  homepage 'https://github.com/apenwarr/sshuttle'
  md5 '352181fa9ad9648d4e181d19a2458c69'
  version '0.53'

  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