class Riemann < Formula desc "Event stream processor" homepage "http://riemann.io" url "https://github.com/riemann/riemann/releases/download/0.3.0/riemann-0.3.0.tar.bz2" sha256 "2c4c8f07f90a7b7a5e902380382ddd789864d4af50a6677a83f745382d6a3f94" bottle :unneeded def shim_script <<~EOS #!/bin/bash if [ -z "$1" ] then config="#{etc}/riemann.config" else config=$@ fi exec "#{libexec}/bin/riemann" $config EOS end def install etc.install "etc/riemann.config" => "riemann.config.guide" # Install jars in libexec to avoid conflicts libexec.install Dir["*"] (bin+"riemann").write shim_script end def caveats; <<~EOS You may also wish to install these Ruby gems: riemann-client riemann-tools riemann-dash EOS end plist_options :manual => "riemann" def plist; <<~EOS KeepAlive Label #{plist_name} ProgramArguments #{opt_bin}/riemann #{etc}/riemann.config RunAtLoad StandardErrorPath #{var}/log/riemann.log StandardOutPath #{var}/log/riemann.log EOS end test do system "#{bin}/riemann", "-help", "0" end end