-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstackgen-beta.rb
More file actions
46 lines (41 loc) · 1.61 KB
/
Copy pathstackgen-beta.rb
File metadata and controls
46 lines (41 loc) · 1.61 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 StackgenBeta < Formula
desc "Generative Infrastructure from Code"
homepage "https://stackgen.com/"
version "0.79.2-rc.1"
license "Apache License 2.0"
on_macos do
if Hardware::CPU.intel?
url "https://releases.stackgen.com/binaries/stackgen-cli/rc/v0.79.2-rc.1/stackgen-beta_0.79.2-rc.1_darwin_amd64.tar.gz"
sha256 "85b110f60b43e4dbea54929dc206360fdabece284d88815b4c2d92298d5ceb88"
define_method(:install) do
bin.install "stackgen-beta"
end
end
if Hardware::CPU.arm?
url "https://releases.stackgen.com/binaries/stackgen-cli/rc/v0.79.2-rc.1/stackgen-beta_0.79.2-rc.1_darwin_arm64.tar.gz"
sha256 "658bd94f9e12276f61894c8d507ec02dc449701d4add7eba65f3dd6644b717e0"
define_method(:install) do
bin.install "stackgen-beta"
end
end
end
on_linux do
if Hardware::CPU.intel? && Hardware::CPU.is_64_bit?
url "https://releases.stackgen.com/binaries/stackgen-cli/rc/v0.79.2-rc.1/stackgen-beta_0.79.2-rc.1_linux_amd64.tar.gz"
sha256 "ab4f7eab6c3bf9298f31f8e9c5af459543a1a9637af9b817c9e8541e69d5ccb4"
define_method(:install) do
bin.install "stackgen-beta"
end
end
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://releases.stackgen.com/binaries/stackgen-cli/rc/v0.79.2-rc.1/stackgen-beta_0.79.2-rc.1_linux_arm64.tar.gz"
sha256 "f12b362321d5e3ffec1659b8eac7dcca47f6eea7539da51a22ea370c40acdad7"
define_method(:install) do
bin.install "stackgen-beta"
end
end
end
end