-
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 MaruAT011 < Formula
desc "unicorn-flavored build tool"
homepage "https://github.com/defenseunicorns/maru-runner"
version "0.1.1"
on_macos do
if Hardware::CPU.intel?
url "https://github.com/defenseunicorns/maru-runner/releases/download/v0.1.1/maru-runner_v0.1.1_Darwin_amd64"
sha256 "6e6c9d5d4abe08cda3e2a1a415aef4afe393abbcc42d7107acfe13a8789818d9"
def install
bin.install "maru-runner_v0.1.1_Darwin_amd64" => "maru"
end
end
if Hardware::CPU.arm?
url "https://github.com/defenseunicorns/maru-runner/releases/download/v0.1.1/maru-runner_v0.1.1_Darwin_arm64"
sha256 "2f878941b06dc25c456d6ed9dccfd98d494b5efb7aa328ad15d15b18888558ea"
def install
bin.install "maru-runner_v0.1.1_Darwin_arm64" => "maru"
end
end
end
on_linux do
if Hardware::CPU.intel?
url "https://github.com/defenseunicorns/maru-runner/releases/download/v0.1.1/maru-runner_v0.1.1_Linux_amd64"
sha256 "5732b7f161aa690e4c6479d6d1c8e433f4b248862bf0aaa24e2d16c4ba0e8fbe"
def install
bin.install "maru-runner_v0.1.1_Linux_amd64" => "maru"
end
end
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/defenseunicorns/maru-runner/releases/download/v0.1.1/maru-runner_v0.1.1_Linux_arm64"
sha256 "8f553db844c30612719c57b6fcef9b99ce6b14a2bccd018d5107cfd5301ef805"
def install
bin.install "maru-runner_v0.1.1_Linux_arm64" => "maru"
end
end
end
end