homebrew-core/Formula/dircproxy.rb
Brian Smyth 887002e7f4 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>
2010-07-29 11:56:04 -07:00

12 lines
381 B
Ruby

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