-
Notifications
You must be signed in to change notification settings - Fork 48
/
cf-cli@7.rb
45 lines (41 loc) · 1.34 KB
/
cf-cli@7.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
class CfCliAT7 < Formula
desc "Cloud Foundry CLI"
homepage "https://code.cloudfoundry.org/cli"
version "7.8.0"
if OS.mac?
if Hardware::CPU.arm?
url "https://packages.cloudfoundry.org/homebrew?arch=macosarm&version=7.8.0"
sha256 "0439951b4591397b1ea33879b382c9581bd4981dd66c6498db4fd3ba231e88e7"
elsif
url "https://packages.cloudfoundry.org/homebrew?arch=macosx64&version=7.8.0"
sha256 "b0399101861349a3e315ad28a66eaed33fb2be754ddc7be8a7f33235979bcafe"
end
elsif OS.linux?
url "https://packages.cloudfoundry.org/stable?release=linux64-binary&version=7.8.0&source=homebrew"
sha256 "a663907f7a7ad193b6e3d3e7af7f916925f9e6e21a6a500e4711a46413aa1e74"
end
def install
bin.install "cf7"
bin.install_symlink "cf7" => "cf"
(bash_completion/"cf7-cli").write <<-completion
# bash completion for Cloud Foundry CLI
_cf-cli() {
# All arguments except the first one
args=("${COMP_WORDS[@]:1:$COMP_CWORD}")
# Only split on newlines
local IFS=$'\n'
# Call completion (note that the first element of COMP_WORDS is
# the executable itself)
COMPREPLY=($(GO_FLAGS_COMPLETION=1 ${COMP_WORDS[0]} "${args[@]}"))
return 0
}
complete -F _cf-cli cf7
complete -F _cf-cli cf
completion
doc.install "LICENSE"
doc.install "NOTICE"
end
test do
system "#{bin}/cf7"
end
end