a822d01836
Xaric is a UNIX irc client similar to (and forked from) BitchX and ircII. I would impress you with a long list of amazing features, but since it has no impressive features (and lacks a few important ones) that probably is not a good idea. Xaric came into being when a group of irc friends wanted a simpler client with pretty colors.
12 lines
312 B
Ruby
12 lines
312 B
Ruby
require 'formula'
|
|
|
|
class Xaric <Formula
|
|
url 'http://xaric.org/software/xaric/releases/xaric-0.13.6.tar.gz'
|
|
homepage 'http://xaric.org/'
|
|
md5 '3523edcd8c8d5234b87c56c86c2dfdfc'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|