-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (40 loc) · 1.57 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 MaruAT002 < Formula
desc "unicorn-flavored build tool"
homepage "https://github.com/defenseunicorns/maru-runner"
version "0.0.2"
on_macos do
if Hardware::CPU.arm?
url "https://github.com/defenseunicorns/maru-runner/releases/download/v0.0.2/maru-runner_v0.0.2_Darwin_arm64"
sha256 "c55fc5684e29124dfc6df4cdfa14ba7809d5c539a57d39589c6b87b560836eb8"
def install
bin.install "maru-runner_v0.0.2_Darwin_arm64" => "maru"
end
end
if Hardware::CPU.intel?
url "https://github.com/defenseunicorns/maru-runner/releases/download/v0.0.2/maru-runner_v0.0.2_Darwin_amd64"
sha256 "6f5e923f5c8e25ab1b975adcd4286d45f4a04746352372c5bdea0c37cd8acd1d"
def install
bin.install "maru-runner_v0.0.2_Darwin_amd64" => "maru"
end
end
end
on_linux do
if Hardware::CPU.intel?
url "https://github.com/defenseunicorns/maru-runner/releases/download/v0.0.2/maru-runner_v0.0.2_Linux_amd64"
sha256 "351efe7034f6c9f35a86c6aa9978077f4101f37cbca51333014b3547e78ef442"
def install
bin.install "maru-runner_v0.0.2_Linux_amd64" => "maru"
end
end
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/defenseunicorns/maru-runner/releases/download/v0.0.2/maru-runner_v0.0.2_Linux_arm64"
sha256 "c543d7aa51524989795bdc5251f9e2e84fd19463f45f436bfef035f4250a994f"
def install
bin.install "maru-runner_v0.0.2_Linux_arm64" => "maru"
end
end
end
end