class OpenshiftCli < Formula desc "OpenShift command-line interface tools" homepage "https://www.openshift.com/" url "https://github.com/openshift/origin.git", :tag => "v1.1.5", :revision => "847f33723fe799c202a6bb6c24dc60b89294f80d" head "https://github.com/openshift/origin.git" bottle do cellar :any_skip_relocation sha256 "df1c094d4a4cfb6ffbb04f3909550c2fc454a3092b862d98482f56012d4d983e" => :el_capitan sha256 "7a5b357eb85fd2e4243faacd56b258936df48e5ca405b97ebf87e257806c34f4" => :yosemite sha256 "13cf36a6b3890f5a75f51c3f10a535339fd6340c73f4d626a8f2553ce91086d3" => :mavericks end depends_on "go" => :build def install # this is necessary to avoid having the version marked as dirty (buildpath/".git/info/exclude").atomic_write "/.brew_home" system "make", "all", "WHAT=cmd/openshift", "GOFLAGS=-v", "OS_OUTPUT_GOPATH=1" arch = MacOS.prefer_64_bit? ? "amd64" : "x86" bin.install "_output/local/bin/#{OS::NAME}/#{arch}/openshift" bin.install_symlink "openshift" => "oc" bin.install_symlink "openshift" => "oadm" bash_completion.install Dir["contrib/completions/bash/*"] end test do assert_match /^oc v#{version}$/, shell_output("#{bin}/oc version") assert_match /^oadm v#{version}$/, shell_output("#{bin}/oadm version") assert_match /^openshift v#{version}$/, shell_output("#{bin}/openshift version") end end