-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (44 loc) · 1.52 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 SpeakeasyAT11144 < Formula
desc "The Speakeasy CLI for interacting with the Speakeasy Platform"
homepage "https://www.speakeasyapi.dev"
version "1.114.4"
license "Apache-2.0"
on_macos do
if Hardware::CPU.intel?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v1.114.4/speakeasy_darwin_amd64.zip"
sha256 "38c5db7c4e94213f18bc5ea31124027bb45f23f97da2d5692e5b2b5864d943de"
def install
bin.install "speakeasy"
end
end
if Hardware::CPU.arm?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v1.114.4/speakeasy_darwin_arm64.zip"
sha256 "54486b200eca2c249d730846f86a7a3fbf18ec02971fc962c8dae60806143153"
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/v1.114.4/speakeasy_linux_arm64.zip"
sha256 "099ad6489bd82fda3850981c362a4a1c29f04fd411ae7e5cd1c17aef5adc4412"
def install
bin.install "speakeasy"
end
end
if Hardware::CPU.intel?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v1.114.4/speakeasy_linux_amd64.zip"
sha256 "73b89b0171a867d7810284f89a078381295ea16f33371cb3b4fc31bfba0a547e"
def install
bin.install "speakeasy"
end
end
end
test do
system "#{bin}/speakeasy --version"
end
end