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 => "v6.4.2", :revision => "33b5de37d73763319101b4ed11a6bd44f6ea03b5" head "https://github.com/elastic/kibana.git" bottle do sha256 "41dd827f2533381d056a116ae85dacba36654651739304d7b9af4d44840e4034" => :mojave sha256 "32b066460d9edaac0b4c2c1b8efe911c960c5ef81444643d025da6da0a567d81" => :high_sierra sha256 "b6a1fd07e6d5db71491e2a37ee402b86990198acb78718865594c795c04895a1" => :sierra end resource "node" do url "https://nodejs.org/dist/v8.11.4/node-v8.11.4.tar.xz" sha256 "fbce7de6d96b0bcb0db0bf77f0e6ea999b6755e6930568aedaab06847552a609" end resource "yarn" do url "https://yarnpkg.com/downloads/1.9.4/yarn-v1.9.4.tar.gz" sha256 "7667eb715077b4bad8e2a832e7084e0e6f1ba54d7280dc573c8f7031a7fb093e" end def install resource("node").stage do system "./configure", "--prefix=#{libexec}/node" system "make", "install" end # remove non open source files rm_rf "x-pack" # trick the build into thinking we've already downloaded the Node.js binary mkdir_p buildpath/".node_binaries/#{resource("node").version}/darwin-x64" # run yarn against the bundled node version and not our node formula (buildpath/"yarn").install resource("yarn") (buildpath/".brew_home/.yarnrc").write "build-from-source true\n" ENV.prepend_path "PATH", buildpath/"yarn/bin" ENV.prepend_path "PATH", prefix/"libexec/node/bin" system "yarn", "kbn", "bootstrap" system "yarn", "build", "--oss", "--release", "--skip-os-packages", "--skip-archives" prefix.install Dir["build/oss/kibana-#{version}-darwin-x86_64/{bin,config,node_modules,optimize,package.json,src,ui_framework,webpackShims}"] mv "licenses/APACHE-LICENSE-2.0.txt", "LICENSE.txt" # install OSS license 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 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 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