-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (44 loc) · 1.56 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
52
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class SpeakeasyAT0220 < Formula
desc "The Speakeasy CLI for interacting with the Speakeasy Platform"
homepage "https://www.speakeasyapi.dev"
version "0.22.0"
license "Apache-2.0"
on_macos do
if Hardware::CPU.intel?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v0.22.0/speakeasy_0.22.0_Darwin_x86_64.tar.gz"
sha256 "d0f8774080a6b3cc701828e81cc3bd0875ae9839616ed83fab5789b2723c539b"
def install
bin.install "speakeasy"
end
end
if Hardware::CPU.arm?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v0.22.0/speakeasy_0.22.0_Darwin_arm64.tar.gz"
sha256 "5f7028583a4559772968037d361001917d33ea2f6284f0ef60358e348d15255a"
def install
bin.install "speakeasy"
end
end
end
on_linux do
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v0.22.0/speakeasy_0.22.0_Linux_arm64.tar.gz"
sha256 "5a484bcaf8c3560f5895155bcfef12352872c75bc7c56a479ad3d46782d54875"
def install
bin.install "speakeasy"
end
end
if Hardware::CPU.intel?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v0.22.0/speakeasy_0.22.0_Linux_x86_64.tar.gz"
sha256 "a2b54ef11d004304b0d5c7fe24804f869107eb64c8f1dba240a90cca2c1cef7f"
def install
bin.install "speakeasy"
end
end
end
test do
system "#{bin}/speakeasy --version"
end
end