homebrew-core/Formula/logstash.rb
Jason Tedor 43c138a703 logstash 2.1.1
Closes Homebrew/homebrew#46817.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-12-09 09:37:34 +00:00

47 lines
1.5 KiB
Ruby

class Logstash < Formula
desc "Tool for managing events and logs"
homepage "https://www.elastic.co/products/logstash"
url "https://download.elastic.co/logstash/logstash/logstash-2.1.1.tar.gz"
sha256 "2ea975e16a02b416a5bd9eed5ab280224820f278d54f6e0ec4cccf0d8f5ca610"
bottle :unneeded
head do
url "https://github.com/elastic/logstash.git"
depends_on :java => "1.8"
end
depends_on :java => "1.7+"
def install
if build.head?
# Build the package from source
system "rake", "artifact:tar"
# Extract the package to the current directory
mkdir "tar"
system "tar", "--strip-components=1", "-xf", Dir["build/logstash-*.tar.gz"].first, "-C", "tar"
cd "tar"
end
inreplace %w[bin/logstash], %r{^\. "\$\(cd `dirname \$SOURCEPATH`\/\.\.; pwd\)\/bin\/logstash\.lib\.sh\"}, ". #{libexec}/bin/logstash.lib.sh"
inreplace %w[bin/logstash.lib.sh], /^LOGSTASH_HOME=.*$/, "LOGSTASH_HOME=#{libexec}"
libexec.install Dir["*"]
bin.install_symlink libexec/"bin/logstash"
end
def caveats; <<-EOS.undent
Please read the getting started guide located at:
https://www.elastic.co/guide/en/logstash/current/getting-started-with-logstash.html
EOS
end
test do
(testpath/"simple.conf").write <<-EOS.undent
input { stdin { type => stdin } }
output { stdout { codec => rubydebug } }
EOS
output = pipe_output("#{bin}/logstash -f simple.conf", "hello world\n")
assert_match /hello world/, output
end
end