require "language/node" class KibanaAT56 < 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.9", :revision => "426347ab4a3ec66fe14e96fcb837ca36b42c9190" head "https://github.com/elastic/kibana.git" bottle do sha256 "99b3b0138eb805e328808b791620da709ab55a0c0e33f4a36cd7f64441890368" => :high_sierra sha256 "9848a1ea4f1ac846679d4cff0af914234686b926df35d370b0f062381f5daecc" => :sierra sha256 "b2aac664eb5076a5d58955d35ce1e294a8e2d42a3bcf4f72ef4ee0982249d78d" => :el_capitan end keg_only :versioned_formula resource "node" do url "https://nodejs.org/dist/v6.14.0/node-v6.14.0.tar.xz" sha256 "21ab08323dfd082e60fefa5e1af99b086c6154a6675ad265a42462621c35d599" end def install resource("node").stage do system "./configure", "--prefix=#{libexec}/node" 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 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