blob: 6c5590c9bdea39d3a6b12bcf49f997fdf02883ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Sshuttle < Formula
homepage 'https://github.com/apenwarr/sshuttle'
url 'https://github.com/apenwarr/sshuttle/zipball/sshuttle-0.61'
sha1 '81ad1b98b2aed6fefdc8993a72392969a1a9be01'
head 'https://github.com/apenwarr/sshuttle.git'
def install
libexec.install Dir['*']
bin.write_exec_script libexec/'sshuttle'
end
end
|