tcptunnel 0.8

Closes Homebrew/homebrew#23977.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
Edward Samson 2013-11-06 08:00:56 +00:00 committed by Mike McQuaid
parent 04a301258c
commit 54f2339757

18
Formula/tcptunnel.rb Normal file
View 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