-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (41 loc) · 1.66 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
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
require_relative "download_strategy"
class GuacamoleAT011 < Formula
desc ""
homepage "https://github.com/padok-team/guacamole"
version "0.1.1"
on_macos do
if Hardware::CPU.arm?
url "https://github.com/padok-team/guacamole/releases/download/v0.1.1/guacamole_0.1.1_darwin_arm64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "86141fdba126b9dc5fa20b9827e058fb3d25f4166b7a0e10e38144b12ff580bb"
def install
bin.install "guacamole"
end
end
if Hardware::CPU.intel?
url "https://github.com/padok-team/guacamole/releases/download/v0.1.1/guacamole_0.1.1_darwin_amd64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "69040aa793511d118fc131734207fabc80a65c4034e37c2ebd58afdbf99add77"
def install
bin.install "guacamole"
end
end
end
on_linux do
if Hardware::CPU.intel?
url "https://github.com/padok-team/guacamole/releases/download/v0.1.1/guacamole_0.1.1_linux_amd64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "5ed48951f8eee08e9069907e8cc468e0c7dcfd1556d967608d7090919189e208"
def install
bin.install "guacamole"
end
end
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/padok-team/guacamole/releases/download/v0.1.1/guacamole_0.1.1_linux_arm64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "ac8fa8df69bdd0444e122c626a3fda999df677dfe0f80cea6b2971a2ff7a3fda"
def install
bin.install "guacamole"
end
end
end
end