-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (40 loc) · 1.49 KB
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
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class ZarfAT0250Rc2 < Formula
desc "DevSecOps for Air Gap"
homepage "https://zarf.dev/"
version "0.25.0-rc2"
on_macos do
if Hardware::CPU.intel?
url "https://github.com/zarf-dev/zarf/releases/download/v0.25.0-rc2/zarf_v0.25.0-rc2_Darwin_amd64"
sha256 "505724b587fbf913ca1beea613d1f1e59cb561dd9393ea598611fd1568dfa049"
def install
bin.install "zarf_v0.25.0-rc2_Darwin_amd64" => "zarf"
end
end
if Hardware::CPU.arm?
url "https://github.com/zarf-dev/zarf/releases/download/v0.25.0-rc2/zarf_v0.25.0-rc2_Darwin_arm64"
sha256 "c50a1a60e8fe3fe8b242c607ce657d052514555325a533d4093f0d4cb2f77689"
def install
bin.install "zarf_v0.25.0-rc2_Darwin_arm64" => "zarf"
end
end
end
on_linux do
if Hardware::CPU.intel?
url "https://github.com/zarf-dev/zarf/releases/download/v0.25.0-rc2/zarf_v0.25.0-rc2_Linux_amd64"
sha256 "95c270acee0ee39288ff6ccad1173cc51f7dbb64af19a31dce60c446ce168c18"
def install
bin.install "zarf_v0.25.0-rc2_Linux_amd64" => "zarf"
end
end
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/zarf-dev/zarf/releases/download/v0.25.0-rc2/zarf_v0.25.0-rc2_Linux_arm64"
sha256 "0f100cc4bfe380b68a22db292e61168051a290f9c90848664e7fa4bec7685b30"
def install
bin.install "zarf_v0.25.0-rc2_Linux_arm64" => "zarf"
end
end
end
end