class Nzbget < Formula desc "Binary newsgrabber for nzb files" homepage "https://nzbget.net/" url "https://github.com/nzbget/nzbget/releases/download/v21.0/nzbget-21.0-src.tar.gz" sha256 "65a5d58eb8f301e62cf086b72212cbf91de72316ffc19182ae45119ddd058d53" head "https://github.com/nzbget/nzbget.git", :branch => "develop" bottle do sha256 "380a069e295f952e741501cea47397642646009df59cbda797ea8bd0adcb704e" => :mojave sha256 "cb7ad31ce5eb68c220df006196ee118cb81bef578f7f1c68925ceba7a28395e1" => :high_sierra sha256 "43186fce24a4267c2fa8174937a9f926da157de0fab0dedeb65896bc953585e2" => :sierra end depends_on "pkg-config" => :build depends_on "gcc" if MacOS.version == :mavericks depends_on "openssl" def install ENV.cxx11 # Fix "ncurses library not found" # Reported 14 Aug 2016: https://github.com/nzbget/nzbget/issues/264 (buildpath/"brew_include").install_symlink MacOS.sdk_path/"usr/include/ncurses.h" ENV["ncurses_CFLAGS"] = "-I#{buildpath}/brew_include" ENV["ncurses_LIBS"] = "-L/usr/lib -lncurses" # Tell configure to use OpenSSL system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--with-tlslib=OpenSSL" system "make" ENV.deparallelize system "make", "install" pkgshare.install_symlink "nzbget.conf" => "webui/nzbget.conf" # Set upstream's recommended values for file systems without # sparse-file support (e.g., HFS+); see Homebrew/homebrew-core#972 inreplace "nzbget.conf", "DirectWrite=yes", "DirectWrite=no" inreplace "nzbget.conf", "ArticleCache=0", "ArticleCache=700" etc.install "nzbget.conf" end plist_options :manual => "nzbget" def plist; <<~EOS Label #{plist_name} ProgramArguments #{opt_bin}/nzbget -s -o OutputMode=Log RunAtLoad KeepAlive EOS end test do (testpath/"downloads/dst").mkpath # Start nzbget as a server in daemon-mode system "#{bin}/nzbget", "-D" # Query server for version information system "#{bin}/nzbget", "-V" # Shutdown server daemon system "#{bin}/nzbget", "-Q" end end