aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Smyth2010-07-29 14:27:22 -0400
committerAdam Vandenberg2010-07-29 11:56:04 -0700
commita8dd1854212611bd2fd7502d7a5f4417ebdd7c85 (patch)
tree374c1ae74f87bd07821ec261342a391e696b34a9
parentb598ecd631eac5873e38cd2522004f383cbb980d (diff)
downloadhomebrew-a8dd1854212611bd2fd7502d7a5f4417ebdd7c85.tar.bz2
New formula: dircproxy
dircproxy is an IRC proxy server ("bouncer") designed for people who use IRC from lots of different workstations or clients, but wish to remain connected and see what they missed while they were away. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/dircproxy.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/dircproxy.rb b/Library/Formula/dircproxy.rb
new file mode 100644
index 000000000..74d002bcd
--- /dev/null
+++ b/Library/Formula/dircproxy.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Dircproxy <Formula
+ url 'http://dircproxy.googlecode.com/files/dircproxy-1.1.0.tar.gz'
+ homepage 'http://code.google.com/p/dircproxy/'
+ sha1 'a967a542c4c6063e8f977276b68deb6692c9d150'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--mandir=#{man}"
+ system "make install"
+ end
+end