-
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 GuacamoleAT012 < Formula
desc ""
homepage "https://github.com/padok-team/guacamole"
version "0.1.2"
on_macos do
if Hardware::CPU.intel?
url "https://github.com/padok-team/guacamole/releases/download/v0.1.2/guacamole_0.1.2_darwin_amd64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "6d325825bd9b07518048134b11590e78c2ca494337d1c5d8074064fe2c992e5a"
def install
bin.install "guacamole"
end
end
if Hardware::CPU.arm?
url "https://github.com/padok-team/guacamole/releases/download/v0.1.2/guacamole_0.1.2_darwin_arm64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "6de7fc3ed735bb87566d8e59101920759f8c78e0b41ea7582228218eae49e9d3"
def install
bin.install "guacamole"
end
end
end
on_linux do
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/padok-team/guacamole/releases/download/v0.1.2/guacamole_0.1.2_linux_arm64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "72103dd879eeceb0742c43706c9d523dd7214c909996afc0841d8b99678ffdbc"
def install
bin.install "guacamole"
end
end
if Hardware::CPU.intel?
url "https://github.com/padok-team/guacamole/releases/download/v0.1.2/guacamole_0.1.2_linux_amd64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "c72a2d56e30fc8da3c48869e5c535927438f4e04df71d114bbf5b8e9c431d749"
def install
bin.install "guacamole"
end
end
end
end