-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Brew formula update for indev version v0.3.3-5
- Loading branch information
1 parent
ed20a9a
commit 088c441
Showing
1 changed file
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
# typed: false | ||
# frozen_string_literal: true | ||
|
||
# This file was generated by GoReleaser. DO NOT EDIT. | ||
class Indev < Formula | ||
desc "A CLI for managing developer platform resources." | ||
Check failure on line 6 in Formula/indev.rb GitHub Actions / test-bot (ubuntu-22.04)
Check failure on line 6 in Formula/indev.rb GitHub Actions / test-bot (ubuntu-22.04)
Check failure on line 6 in Formula/indev.rb GitHub Actions / test-bot (macos-14)
|
||
homepage "https://developers.intility.com" | ||
version "0.3.3-5" | ||
|
||
on_macos do | ||
on_intel do | ||
url "https://github.com/intility/indev/releases/download/v0.3.3-5/indev_darwin_x86_64.tar.gz", | ||
headers: [ | ||
"Accept: application/octet-stream", | ||
"Authorization: bearer #{ENV["DOWNLOADER_GITHUB_TOKEN"]}" | ||
Check failure on line 15 in Formula/indev.rb GitHub Actions / test-bot (ubuntu-22.04)
|
||
] | ||
sha256 "8040498b4fc3cb2f2902775c8e632ba719701cf99926410e6da0270f0254b056" | ||
|
||
def install | ||
bin.install "indev" | ||
bash_completion.install "completions/indev.bash" => "indev" | ||
zsh_completion.install "completions/indev.zsh" => "_indev" | ||
fish_completion.install "completions/indev.fish" | ||
end | ||
end | ||
on_arm do | ||
url "https://github.com/intility/indev/releases/download/v0.3.3-5/indev_darwin_arm64.tar.gz", | ||
headers: [ | ||
"Accept: application/octet-stream", | ||
"Authorization: bearer #{ENV["DOWNLOADER_GITHUB_TOKEN"]}" | ||
Check failure on line 30 in Formula/indev.rb GitHub Actions / test-bot (ubuntu-22.04)
|
||
] | ||
sha256 "b0dac12404847f1ed4427d10a3078ace8b7c4a88988a11ef45cdfe22cec44292" | ||
|
||
def install | ||
bin.install "indev" | ||
bash_completion.install "completions/indev.bash" => "indev" | ||
zsh_completion.install "completions/indev.zsh" => "_indev" | ||
fish_completion.install "completions/indev.fish" | ||
end | ||
end | ||
end | ||
|
||
on_linux do | ||
on_intel do | ||
if Hardware::CPU.is_64_bit? | ||
url "https://github.com/intility/indev/releases/download/v0.3.3-5/indev_linux_x86_64.tar.gz", | ||
headers: [ | ||
"Accept: application/octet-stream", | ||
"Authorization: bearer #{ENV["DOWNLOADER_GITHUB_TOKEN"]}" | ||
Check failure on line 49 in Formula/indev.rb GitHub Actions / test-bot (ubuntu-22.04)
|
||
] | ||
sha256 "dd3602577980244ede9c654f463ecc7cc27fddacc224ac107b935f7b4ec148da" | ||
|
||
def install | ||
bin.install "indev" | ||
bash_completion.install "completions/indev.bash" => "indev" | ||
zsh_completion.install "completions/indev.zsh" => "_indev" | ||
fish_completion.install "completions/indev.fish" | ||
end | ||
end | ||
end | ||
on_arm do | ||
if Hardware::CPU.is_64_bit? | ||
url "https://github.com/intility/indev/releases/download/v0.3.3-5/indev_linux_arm64.tar.gz", | ||
headers: [ | ||
"Accept: application/octet-stream", | ||
"Authorization: bearer #{ENV["DOWNLOADER_GITHUB_TOKEN"]}" | ||
Check failure on line 66 in Formula/indev.rb GitHub Actions / test-bot (ubuntu-22.04)
|
||
] | ||
sha256 "3793bfaffca3089003c79bc6c6349436f660b230aef6162e6d584734fc79596c" | ||
|
||
def install | ||
bin.install "indev" | ||
bash_completion.install "completions/indev.bash" => "indev" | ||
zsh_completion.install "completions/indev.zsh" => "_indev" | ||
fish_completion.install "completions/indev.fish" | ||
end | ||
end | ||
end | ||
end | ||
end |