tcptunnel 0.8
Closes Homebrew/homebrew#23977. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
parent
04a301258c
commit
54f2339757
1 changed files with 18 additions and 0 deletions
18
Formula/tcptunnel.rb
Normal file
18
Formula/tcptunnel.rb
Normal file
|
@ -0,0 +1,18 @@
|
|||
require 'formula'
|
||||
|
||||
class Tcptunnel < Formula
|
||||
homepage 'http://www.vakuumverpackt.de/tcptunnel/'
|
||||
url 'https://github.com/vakuum/tcptunnel/archive/v0.8.tar.gz'
|
||||
sha1 '393e0496e89fbb362b7d40efe820456ea898c54c'
|
||||
|
||||
def install
|
||||
bin.mkpath
|
||||
system "./configure", "--prefix=#{bin}"
|
||||
system "make"
|
||||
system "make", "install"
|
||||
end
|
||||
|
||||
test do
|
||||
system "#{bin}/tcptunnel", "--version"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue