-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsst.rb
51 lines (44 loc) · 1.32 KB
/
sst.rb
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 Sst < Formula
desc ""
homepage ""
version "3.5.14"
on_macos do
if Hardware::CPU.intel?
url "https://github.com/sst/sst/releases/download/v3.5.14/sst-mac-x86_64.tar.gz"
sha256 "a5f487d5e4b0fa10874a40f630e8414ba247bf4bb595d37e15b1be9d7bbe14a0"
def install
bin.install "sst"
end
end
if Hardware::CPU.arm?
url "https://github.com/sst/sst/releases/download/v3.5.14/sst-mac-arm64.tar.gz"
sha256 "298c0ad8c5a2b252037a4ba77827f88c40ccdbafbb410916328c22e121432d23"
def install
bin.install "sst"
end
end
end
on_linux do
if Hardware::CPU.intel?
if Hardware::CPU.is_64_bit?
url "https://github.com/sst/sst/releases/download/v3.5.14/sst-linux-x86_64.tar.gz"
sha256 "cef7bd160ad6dcb31045b2f83428c13e729cd349720f47c57a1aedb045962387"
def install
bin.install "sst"
end
end
end
if Hardware::CPU.arm?
if Hardware::CPU.is_64_bit?
url "https://github.com/sst/sst/releases/download/v3.5.14/sst-linux-arm64.tar.gz"
sha256 "ea102ad5cc20a84def536b0d15d1e4ee44eef46970cc42f674ac43ccfdd6dcf4"
def install
bin.install "sst"
end
end
end
end
end