-
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 SpeakeasyAT11150 < Formula
desc "The Speakeasy CLI for interacting with the Speakeasy Platform"
homepage "https://www.speakeasyapi.dev"
version "1.115.0"
license "Apache-2.0"
on_macos do
if Hardware::CPU.arm?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v1.115.0/speakeasy_darwin_arm64.zip"
sha256 "64ab7125d5ea38e34bddde366b1830330b8618c4cccc3c9d7d8d08b10e2a1d10"
def install
bin.install "speakeasy"
end
end
if Hardware::CPU.intel?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v1.115.0/speakeasy_darwin_amd64.zip"
sha256 "b331b4e8a07be9db72c169e598b99876872954fed783811037d650678d415ca7"
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.115.0/speakeasy_linux_amd64.zip"
sha256 "a8eb57bb942798aa48c90f13b78c0f8df482ea16d0b2a62da1476b7677fef778"
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.115.0/speakeasy_linux_arm64.zip"
sha256 "612ef8ec6553e5c48c55c352d2f157d05850417411f632af8b3cf99cc5561eca"
def install
bin.install "speakeasy"
end
end
end
test do
system "#{bin}/speakeasy --version"
end
end