diff options
| author | Barberio | 2014-05-19 23:23:23 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2014-05-20 07:46:54 -0700 |
| commit | 6b9feda1a4fbbf8b7f375d61af239023a49569dd (patch) | |
| tree | 1dee90e5895e6c665bc9aa72fa59d0338390cfab /Library | |
| parent | 19873552808a4978f65a918d176a0ea20e623149 (diff) | |
| download | homebrew-6b9feda1a4fbbf8b7f375d61af239023a49569dd.tar.bz2 | |
udptunnel 1.1
Closes #29406.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/udptunnel.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Library/Formula/udptunnel.rb b/Library/Formula/udptunnel.rb new file mode 100644 index 000000000..351ac2f1c --- /dev/null +++ b/Library/Formula/udptunnel.rb @@ -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 |
