require "language/node" class Kibana < Formula desc "Analytics and search dashboard for Elasticsearch" homepage "https://www.elastic.co/products/kibana" url "https://github.com/elastic/kibana.git", :tag => "v5.6.2", :revision => "864b8719e2814b7667d5831c415a79026d78ea9f" head "https://github.com/elastic/kibana.git" bottle do sha256 "1ae7057081ef8cff96a73f172aefd00c9d5ab49b39d68b861a3a226e43f067ce" => :high_sierra sha256 "87e5a0430097026106718a86c5474d18a0e28e76fda6991f58653840bd9c1036" => :sierra sha256 "18ef19420a87821c061f0e63aaa8c882d762f1210b714c023072362ab42d8068" => :el_capitan end resource "node" do url "https://nodejs.org/dist/v6.11.1/node-v6.11.1.tar.xz" sha256 "6f6655b85919aa54cb045a6d69a226849802fcc26491d0db4ce59873e41cc2b8" end def install resource("node").stage do system "./configure", "--prefix=#{libexec}/node" system "make", "test" system "make", "install" end # do not build packages for other platforms inreplace buildpath/"tasks/config/platforms.js", /('(linux-x64|windows-x64)',?(?!;))/, "// \\1" # trick the build into thinking we've already downloaded the Node.js binary mkdir_p buildpath/".node_binaries/#{resource("node").version}/darwin-x64" # set npm env and fix cache edge case (https://github.com/Homebrew/brew/pull/37#issuecomment-208840366) ENV.prepend_path "PATH", prefix/"libexec/node/bin" system "npm", "install", "-ddd", "--build-from-source", "--#{Language::Node.npm_cache_config}" system "npm", "run", "build", "--", "--release", "--skip-os-packages", "--skip-archives" prefix.install Dir["build/kibana-#{version}-darwin-x86_64/{bin,config,node_modules,optimize,package.json,src,ui_framework,webpackShims}"] inreplace "#{bin}/kibana", %r{/node/bin/node}, "/libexec/node/bin/node" inreplace "#{bin}/kibana-plugin", %r{/node/bin/node}, "/libexec/node/bin/node" cd prefix do inreplace "config/kibana.yml", "/var/run/kibana.pid", var/"run/kibana.pid" (etc/"kibana").install Dir["config/*"] rm_rf "config" end end def post_install ln_s etc/"kibana", prefix/"config" (prefix/"data").mkdir (prefix/"plugins").mkdir end def caveats; <<-EOS.undent Config: #{etc}/kibana/ If you wish to preserve your plugins upon upgrade, make a copy of #{opt_prefix}/plugins before upgrading, and copy it into the new keg location after upgrading. EOS end plist_options :manual => "kibana" def plist; <<-EOS.undent Label #{plist_name} Program #{opt_bin}/kibana RunAtLoad EOS end test do ENV["BABEL_CACHE_PATH"] = testpath/".babelcache.json" assert_match /#{version}/, shell_output("#{bin}/kibana -V") end end