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.7.2", :revision => "c8ecbda57ae7c780ef7d870f2e4d163b5f093e3b" head "https://github.com/elastic/kibana.git" bottle do cellar :any_skip_relocation sha256 "74d2cdea6ffd290e0176ee927fc7f294edbeec1bb7236a665f40b0f2617accdd" => :mojave sha256 "bf480f6bf501c134541924b44c3e4f935f4ced91e2a9ee9997ddbaa05ad1ab35" => :high_sierra sha256 "9c25debbf9d2664cc667ca161f8c652210e18ad1c319d862c1b26013869db57e" => :sierra end resource "node" do url "https://nodejs.org/dist/v10.15.2/node-v10.15.2.tar.xz" sha256 "b8bb2da7cb016e895bc2f70009a420f6b8d519e66548624b6130bbfbd5118c59" end resource "yarn" do url "https://yarnpkg.com/downloads/1.16.0/yarn-v1.16.0.tar.gz" sha256 "df202627d9a70cf09ef2fb11cb298cb619db1b958590959d6f6e571b50656029" 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" inreplace "package.json", /"x-pack":.*/, "" # patch build to not try to read tsconfig.json's from the removed x-pack folder inreplace "src/dev/typescript/projects.ts" do |s| s.gsub! "new Project(resolve(REPO_ROOT, 'x-pack/tsconfig.json')),", "" s.gsub! "new Project(resolve(REPO_ROOT, 'x-pack/test/tsconfig.json'), 'x-pack/test'),", "" end # 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 .glob("build/oss/kibana-#{version}-darwin-x86_64/**") .reject { |f| File.fnmatch("build/oss/kibana-#{version}-darwin-x86_64/{node, data, plugins}", f) } 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