43 lines
1.5 KiB
Ruby
43 lines
1.5 KiB
Ruby
class Mmctl < Formula
|
|
desc "Remote CLI tool for Mattermost server"
|
|
homepage "https://github.com/mattermost/mmctl"
|
|
url "https://github.com/mattermost/mmctl.git",
|
|
tag: "v5.26.0",
|
|
revision: "a8957423bc2b38519b49e8ee54f729fb8c3f1965"
|
|
license "Apache-2.0"
|
|
head "https://github.com/mattermost/mmctl.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "0b86181ad149592248dd16f51da69bbe74fc0bb8263365cd798d1d7b21076bf6" => :catalina
|
|
sha256 "18d2ad64c2ab756895bfdad129cebbced7876bedf4c6ec691cad2f6c8716fb38" => :mojave
|
|
sha256 "c162d54c5dd9065f2b2f0efa42c52b47407992fcb49d41c575aab8ae2958627e" => :high_sierra
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
ENV["GOBIN"] = buildpath/bin
|
|
ENV["ADVANCED_VET"] = "FALSE"
|
|
ENV["BUILD_HASH"] = Utils.safe_popen_read("git", "rev-parse", "HEAD").chomp
|
|
ENV["BUILD_VERSION"] = version.to_s
|
|
(buildpath/"src/github.com/mattermost/mmctl").install buildpath.children
|
|
cd "src/github.com/mattermost/mmctl" do
|
|
system "make", "install"
|
|
|
|
# Install the zsh and bash completions
|
|
output = Utils.safe_popen_read("#{bin}/mmctl", "completion", "bash")
|
|
(bash_completion/"mmctl").write output
|
|
output = Utils.safe_popen_read("#{bin}/mmctl", "completion", "zsh")
|
|
(zsh_completion/"_mmctl").write output
|
|
end
|
|
end
|
|
|
|
test do
|
|
output = pipe_output("#{bin}/mmctl help 2>&1")
|
|
assert_no_match /.*No such file or directory.*/, output
|
|
assert_no_match /.*command not found.*/, output
|
|
assert_match /.*mmctl \[command\].*/, output
|
|
end
|
|
end
|