homebrew-core/Formula/udptunnel.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

22 lines
699 B
Ruby

class Udptunnel < Formula
desc "Tunnel UDP packets over a TCP connection"
homepage "http://www.cs.columbia.edu/~lennox/udptunnel"
url "http://www.cs.columbia.edu/~lennox/udptunnel/udptunnel-1.1.tar.gz"
sha256 "45c0e12045735bc55734076ebbdc7622c746d1fe4e6f7267fa122e2421754670"
depends_on "autoconf" => :build
depends_on "automake" => :build
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
doc.install "udptunnel.html"
end
test do
system "#{bin}/udptunnel -h; true"
end
end