2013-04-21 14:15:42 +00:00
|
|
|
class Bitchx < Formula
|
2015-01-04 14:10:26 +00:00
|
|
|
homepage "http://bitchx.sourceforge.net/"
|
|
|
|
url "https://downloads.sourceforge.net/project/bitchx/ircii-pana/bitchx-1.2.1/bitchx-1.2.1.tar.gz"
|
|
|
|
sha1 "48ca956d43d6d62e32040bddfae49e88c1188927"
|
2013-04-21 14:15:42 +00:00
|
|
|
|
2015-01-04 14:36:35 +00:00
|
|
|
bottle do
|
|
|
|
sha1 "8ad5407a90b61e1d20f59486c2ca750383bcc595" => :yosemite
|
|
|
|
sha1 "3581e44130a9bcf64636355c09d5dae36ea30d1c" => :mavericks
|
|
|
|
sha1 "01ca96037d259ab3b17354e65001672140b4cfa9" => :mountain_lion
|
|
|
|
end
|
|
|
|
|
2015-01-04 14:10:26 +00:00
|
|
|
depends_on "openssl"
|
2013-04-21 14:15:42 +00:00
|
|
|
|
|
|
|
def install
|
2015-01-04 14:10:26 +00:00
|
|
|
plugins = %w[acro aim arcfour amp autocycle blowfish cavlink encrypt
|
|
|
|
fserv hint identd nap pkga possum qbx qmail]
|
|
|
|
args = %W[
|
2013-04-21 14:15:42 +00:00
|
|
|
--prefix=#{prefix}
|
|
|
|
--with-ssl
|
2015-01-04 14:10:26 +00:00
|
|
|
--with-plugins=#{plugins * ","}
|
2013-04-21 14:15:42 +00:00
|
|
|
--enable-ipv6
|
|
|
|
--mandir=#{man}
|
2015-01-04 14:10:26 +00:00
|
|
|
]
|
2013-04-21 14:15:42 +00:00
|
|
|
|
|
|
|
system "./configure", *args
|
|
|
|
system "make"
|
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
On case-sensitive filesytems, it is necessary to run `BitchX` not `bitchx`.
|
|
|
|
For best visual appearance, your terminal emulator may need:
|
|
|
|
* Character encoding set to Western (ISO Latin 1).
|
|
|
|
(or a similar, compatible encoding)
|
|
|
|
* A font capable of extended ASCII characters:
|
|
|
|
See: https://www.google.com/search?q=perfect+dos+vga+437
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2014-05-20 17:41:52 +00:00
|
|
|
system bin/"BitchX", "-v"
|
2013-04-21 14:15:42 +00:00
|
|
|
end
|
|
|
|
end
|