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>
master
Brian Smyth 2010-07-29 14:27:22 -04:00 committed by Adam Vandenberg
parent d43adc65eb
commit 887002e7f4
1 changed files with 12 additions and 0 deletions

12
Formula/dircproxy.rb Normal file
View File

@ -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