blob: 990ecedf93b209a8f1143a1f5b30c227ad0f3a1a (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
 |