class Znc < Formula desc "Advanced IRC bouncer" homepage "https://wiki.znc.in/ZNC" url "https://znc.in/releases/archive/znc-1.7.0.tar.gz" sha256 "c07e31439ac6b948a577bd61a9d5f61a6d191d387423779b937aa1404051b96f" bottle do sha256 "c5993fa37883982d253b34f4f2381e283714ca09ef4f9a8b67848ba3de200046" => :high_sierra sha256 "d62f0c6426254a99b644a7bc7abf0a4d4f17e477ed6f41dc9cd541518db4942b" => :sierra sha256 "717c757ef458345931f626cef0a5bf7e4165328ba5808f91329214e36beb847d" => :el_capitan end head do url "https://github.com/znc/znc.git" depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build end option "with-debug", "Compile ZNC with debug support" option "with-icu4c", "Build with icu4c for charset support" option "with-python3", "Build with mod_python support, allowing Python ZNC modules" deprecated_option "enable-debug" => "with-debug" deprecated_option "with-python3" => "with-python" depends_on "pkg-config" => :build depends_on "openssl" depends_on "icu4c" => :optional depends_on "python" => :optional needs :cxx11 def install ENV.cxx11 # These need to be set in CXXFLAGS, because ZNC will embed them in its # znc-buildmod script; ZNC's configure script won't add the appropriate # flags itself if they're set in superenv and not in the environment. ENV.append "CXXFLAGS", "-std=c++11" ENV.append "CXXFLAGS", "-stdlib=libc++" if ENV.compiler == :clang args = ["--prefix=#{prefix}"] args << "--enable-debug" if build.with? "debug" args << "--enable-python" if build.with? "python" system "./autogen.sh" if build.head? system "./configure", *args system "make", "install" end plist_options :manual => "znc --foreground" def plist; <<~EOS Label #{plist_name} ProgramArguments #{opt_bin}/znc --foreground StandardErrorPath #{var}/log/znc.log StandardOutPath #{var}/log/znc.log RunAtLoad StartInterval 300 EOS end test do mkdir ".znc" system bin/"znc", "--makepem" assert_predicate testpath/".znc/znc.pem", :exist? end end