51 lines
1.6 KiB
Ruby
51 lines
1.6 KiB
Ruby
class Logentries < Formula
|
|
desc "Utility for access to logentries logging infrastructure"
|
|
homepage "https://logentries.com/doc/agent/"
|
|
url "https://github.com/logentries/le/archive/v1.4.27.tar.gz"
|
|
sha256 "218ca34395445312aeb77eb23a9bf589771da5fac9feca9b82646f57867abc2f"
|
|
head "https://github.com/logentries/le.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "369d6eff854cc45844c25a2933bec0d8adec12bcd8b72bc2034e517fa4492216" => :el_capitan
|
|
sha256 "0b34497db2b3c2a24cd65451a0f7ac00715916125ae4bd2fe062b49e52ca2a69" => :yosemite
|
|
sha256 "e069e981ac5f77d8948256be26fa66a66aae5c5876d7c447c3719152e072758c" => :mavericks
|
|
end
|
|
|
|
conflicts_with "le", :because => "both install a le binary"
|
|
|
|
def install
|
|
ENV.prepend_create_path "PYTHONPATH", libexec/"lib/python2.7/site-packages"
|
|
system "python", *Language::Python.setup_install_args(libexec)
|
|
|
|
bin.install Dir["#{libexec}/bin/*"]
|
|
bin.env_script_all_files(libexec/"bin", :PYTHONPATH => ENV["PYTHONPATH"])
|
|
end
|
|
|
|
plist_options :manual => "le monitor"
|
|
|
|
def plist; <<-EOS.undent
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/le</string>
|
|
<string>monitor</string>
|
|
</array>
|
|
<key>KeepAlive</key>
|
|
<true/>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
shell_output("#{bin}/le --help", 4)
|
|
end
|
|
end
|