homebrew-core/Formula/operator-sdk.rb

51 lines
1.5 KiB
Ruby
Raw Normal View History

class OperatorSdk < Formula
desc "SDK for building Kubernetes applications"
homepage "https://coreos.com/operators/"
url "https://github.com/operator-framework/operator-sdk/archive/v0.5.0.tar.gz"
sha256 "2da85ed4d69da11344d935578cdd19ede0525804f66572081c53985e5a32c890"
head "https://github.com/operator-framework/operator-sdk.git"
2019-03-13 08:27:24 +00:00
bottle do
cellar :any_skip_relocation
sha256 "7a1445110102bde59f3562eefd9f3b5203379084c442fa59a34b41e4dd50e917" => :mojave
sha256 "763c8c11ab0a1cddb5548630aa778a703fd2600b62870a520b195bdd82cf7ad3" => :high_sierra
sha256 "af60c9ec808f9050305ab760ed72489e17e7896710542271edf51eb38401546c" => :sierra
end
depends_on "dep"
depends_on "go"
def install
ENV["GOPATH"] = buildpath
dir = buildpath/"src/github.com/operator-framework/operator-sdk"
dir.install buildpath.children - [buildpath/".brew_home"]
cd dir do
# Make binary
system "make", "install"
bin.install buildpath/"bin/operator-sdk"
# Install bash completion
output = Utils.popen_read("#{bin}/operator-sdk completion bash")
(bash_completion/"operator-sdk").write output
# Install zsh completion
output = Utils.popen_read("#{bin}/operator-sdk completion zsh")
(zsh_completion/"_operator-sdk").write output
prefix.install_metafiles
end
end
test do
ENV["GOPATH"] = testpath
dir = testpath/"src/example.com/test-operator"
dir.mkpath
cd dir do
# Create a new, blank operator framework
system "#{bin}/operator-sdk", "new", "test"
end
end
end