aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorTony Sokhon2010-04-24 12:20:11 +0200
committerDavid Höppner2010-04-24 13:27:50 +0200
commitafd7be36d11abd9e5a6b9037d498ee0dc0bad786 (patch)
tree8e42878206a2a27396dafbf952c2ad236858a2d9 /Library/Formula
parent0b96161d0d5700b8c3a3b0162d253c6b52ead77c (diff)
downloadhomebrew-afd7be36d11abd9e5a6b9037d498ee0dc0bad786.tar.bz2
New formula: GNU httptunnel v3.0.5 (stable)
httptunnel creates a bidirectional virtual data connection tunnelled in HTTP requests. http://www.nocrew.org/software/httptunnel.html Signed-off-by: David Höppner <0xffea@gmail.com> * use man var
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/httptunnel.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/httptunnel.rb b/Library/Formula/httptunnel.rb
new file mode 100644
index 000000000..61e4a746d
--- /dev/null
+++ b/Library/Formula/httptunnel.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Httptunnel <Formula
+ url 'http://www.nocrew.org/software/httptunnel/httptunnel-3.0.5.tar.gz'
+ homepage 'http://www.nocrew.org/software/httptunnel.html'
+ md5 '2a710f377c82ab4eb201458f7b9f99c5'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
+ system "make install"
+ end
+end