require 'formula' class IrcdHybrid < Formula homepage 'http://www.ircd-hybrid.org/' url 'http://sourceforge.net/projects/ircd-hybrid/files/ircd-hybrid/ircd-hybrid-8.0.4/ircd-hybrid-8.0.4.tgz' sha1 '610df82fba0f5c21202c3d4910f9d68ae220ebcb' # ircd-hybrid needs the .la files skip_clean :la def install system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}", "--localstatedir=#{var}", # there's no config setting for this so set it to something generous "--with-nicklen=30" system "make install" end def test system "ircd -version" end def caveats; <<-EOS.undent You'll more than likely need to edit the default settings in the config file: #{etc}/ircd.conf EOS end plist_options :manual => "ircd" def plist; <<-EOS.undent KeepAlive Label #{plist_name} ProgramArguments #{opt_prefix}/sbin/ircd RunAtLoad UserName #{`whoami`.chomp} WorkingDirectory #{HOMEBREW_PREFIX} StandardErrorPath #{var}/ircd.log EOS end end