udptunnel 1.1
Closes Homebrew/homebrew#29406. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
fffea49506
commit
8f9956cefa
1 changed files with 22 additions and 0 deletions
22
Formula/udptunnel.rb
Normal file
22
Formula/udptunnel.rb
Normal file
|
@ -0,0 +1,22 @@
|
|||
require "formula"
|
||||
|
||||
class Udptunnel < Formula
|
||||
homepage "http://www.cs.columbia.edu/~lennox/udptunnel"
|
||||
url "http://www.cs.columbia.edu/~lennox/udptunnel/udptunnel-1.1.tar.gz"
|
||||
sha1 "c768097d9bca23d6be35931b010b75a451f34eb8"
|
||||
|
||||
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"
|
||||
end
|
||||
|
||||
test do
|
||||
system "#{bin}/udptunnel -h; true"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue