887002e7f4
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>
12 lines
381 B
Ruby
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
|