-
Notifications
You must be signed in to change notification settings - Fork 0
/
tfrbac.rb
51 lines (44 loc) · 1.34 KB
/
tfrbac.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
46
47
48
49
50
51
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Tfrbac < Formula
desc ""
homepage ""
version "0.1.102"
on_macos do
on_intel do
url "https://github.com/dev-hato/tfrbac/releases/download/v0.1.102/tfrbac_Darwin_x86_64.tar.gz"
sha256 "84392e1858280d3ff27075373defb7df313f340dcbce73821cc1bb20861917d6"
def install
bin.install "tfrbac"
end
end
on_arm do
url "https://github.com/dev-hato/tfrbac/releases/download/v0.1.102/tfrbac_Darwin_arm64.tar.gz"
sha256 "f2edeed6e97abc732ec83120b41015edebefe3c9c5682ae3e39ef2db096a9745"
def install
bin.install "tfrbac"
end
end
end
on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://github.com/dev-hato/tfrbac/releases/download/v0.1.102/tfrbac_Linux_x86_64.tar.gz"
sha256 "c664be0161b88ead7dbd5b16d8d57201db9df91955ebd32283d28584182080f7"
def install
bin.install "tfrbac"
end
end
end
on_arm do
if Hardware::CPU.is_64_bit?
url "https://github.com/dev-hato/tfrbac/releases/download/v0.1.102/tfrbac_Linux_arm64.tar.gz"
sha256 "a2ab97e8b92ce6d2a7092763dd94b040193f13f78ea52891b3b60f30e5a9d7d7"
def install
bin.install "tfrbac"
end
end
end
end
end