-
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 SpeakeasyAT11192 < Formula
desc "The Speakeasy CLI for interacting with the Speakeasy Platform"
homepage "https://www.speakeasyapi.dev"
version "1.119.2"
license "Apache-2.0"
on_macos do
if Hardware::CPU.arm?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v1.119.2/speakeasy_darwin_arm64.zip"
sha256 "d3cf1c434e84372906ac6989f0ba476e4ebe90d7ed1f67020b9e187d359e2c39"
def install
bin.install "speakeasy"
end
end
if Hardware::CPU.intel?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v1.119.2/speakeasy_darwin_amd64.zip"
sha256 "d168f675379c27bd3201f57a0383052b028dc7259661377c570186f18b1c6f3f"
def install
bin.install "speakeasy"
end
end
end
on_linux do
if Hardware::CPU.intel?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v1.119.2/speakeasy_linux_amd64.zip"
sha256 "54f6c81d0e08ba1a1bb250c52e34881d4a0d4710b5785b99c0d4b5c5cdf0a59d"
def install
bin.install "speakeasy"
end
end
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v1.119.2/speakeasy_linux_arm64.zip"
sha256 "e45d8f8e68f936516e0fad9bea88268553fbe59085936f3d1fcc1003afc856f3"
def install
bin.install "speakeasy"
end
end
end
test do
system "#{bin}/speakeasy --version"
end
end