-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstackgen-slo.rb
More file actions
46 lines (41 loc) · 1.5 KB
/
stackgen-slo.rb
File metadata and controls
46 lines (41 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
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class StackgenSlo < Formula
desc "Generative Infrastructure from Code"
homepage "https://stackgen.com/"
version "1.37.0"
license "Apache License 2.0"
on_macos do
if Hardware::CPU.intel?
url "https://releases.stackgen.com/binaries/stackgen-slo/v1.37.0/stackgen-slo-app_1.37.0_darwin_amd64.tar.gz"
sha256 "1bcb3699861ba51bc3dcea33e2dc0b81f9d2649b2946fd31881b33b3d0f24570"
def install
bin.install "stackgen-slo"
end
end
if Hardware::CPU.arm?
url "https://releases.stackgen.com/binaries/stackgen-slo/v1.37.0/stackgen-slo-app_1.37.0_darwin_arm64.tar.gz"
sha256 "751f5fd2a233aa075ef866e65ac32d4935c5b6b2fc52c50043dc04234c980421"
def install
bin.install "stackgen-slo"
end
end
end
on_linux do
if Hardware::CPU.intel? && Hardware::CPU.is_64_bit?
url "https://releases.stackgen.com/binaries/stackgen-slo/v1.37.0/stackgen-slo-app_1.37.0_linux_amd64.tar.gz"
sha256 "14fee2a5bde13848f263b0f55cec070fda15346b7e2b3597a50ffb7623da4cd3"
def install
bin.install "stackgen-slo"
end
end
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://releases.stackgen.com/binaries/stackgen-slo/v1.37.0/stackgen-slo-app_1.37.0_linux_arm64.tar.gz"
sha256 "4f45e36b9626b44a94f9bce1fedcac92795b6809c07f292bac336e2f8803216d"
def install
bin.install "stackgen-slo"
end
end
end
end