homebrew-core/Formula/tcptunnel.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

17 lines
438 B
Ruby

class Tcptunnel < Formula
desc "TCP port forwarder"
homepage "http://www.vakuumverpackt.de/tcptunnel/"
url "https://github.com/vakuum/tcptunnel/archive/v0.8.tar.gz"
sha256 "1926e2636d26570035a5a0292c8d7766c4a9af939881121660df0d0d4513ade4"
def install
bin.mkpath
system "./configure", "--prefix=#{bin}"
system "make"
system "make", "install"
end
test do
system "#{bin}/tcptunnel", "--version"
end
end