-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (44 loc) · 1.5 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
48
49
50
51
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class LulaAT0100 < Formula
desc "The Compliance Validator"
homepage "https://lula.dev"
version "0.10.0"
on_macos do
on_intel do
url "https://github.com/defenseunicorns/lula/releases/download/v0.10.0/lula_v0.10.0_Darwin_amd64"
sha256 "168fd56879d7d93320c6b67c37f1e9fbd5eb3f5065ad84005f8d6710b3c66a86"
def install
bin.install "lula_v0.10.0_Darwin_amd64" => "lula"
end
end
on_arm do
url "https://github.com/defenseunicorns/lula/releases/download/v0.10.0/lula_v0.10.0_Darwin_arm64"
sha256 "b7675a6149a3ae471edab9cfa5e2613c82f839c4039dc56055d0a47f2f23766d"
def install
bin.install "lula_v0.10.0_Darwin_arm64" => "lula"
end
end
end
on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://github.com/defenseunicorns/lula/releases/download/v0.10.0/lula_v0.10.0_Linux_amd64"
sha256 "ef376a9367d9dee7bf6fa33e5a173352455bdbee7bdb1762fcb1cdb0285c4b19"
def install
bin.install "lula_v0.10.0_Linux_amd64" => "lula"
end
end
end
on_arm do
if Hardware::CPU.is_64_bit?
url "https://github.com/defenseunicorns/lula/releases/download/v0.10.0/lula_v0.10.0_Linux_arm64"
sha256 "7622c6abb2d7d9ee75206990c022727851924f2a8fa7fdecbaf9f33d86804878"
def install
bin.install "lula_v0.10.0_Linux_arm64" => "lula"
end
end
end
end
end