aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sshuttle.rb
blob: 7c1d3fc34ea0cd46dbbf1c2daf2e85409875bf3e (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 '000af679bca06e7ee40985a014858b06'

  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