-
Notifications
You must be signed in to change notification settings - Fork 1
/
guacamole.rb
51 lines (44 loc) · 1.43 KB
/
guacamole.rb
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
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Guacamole < Formula
desc ""
homepage "https://github.com/padok-team/guacamole"
version "0.3.0"
on_macos do
on_intel do
url "https://github.com/padok-team/guacamole/releases/download/v0.3.0/guacamole_0.3.0_darwin_amd64.tar.gz"
sha256 "90106659ffc95a7d8f52df39203e61d407bbadf5e810843ba8f741e7127a093a"
def install
bin.install "guacamole"
end
end
on_arm do
url "https://github.com/padok-team/guacamole/releases/download/v0.3.0/guacamole_0.3.0_darwin_arm64.tar.gz"
sha256 "f0727d31d5858d36725c879d70a137e1ab247a2e936d1d7a71433c5437546f6f"
def install
bin.install "guacamole"
end
end
end
on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://github.com/padok-team/guacamole/releases/download/v0.3.0/guacamole_0.3.0_linux_amd64.tar.gz"
sha256 "9e57e037c66284373b52a1b8c3518f7e30d1967da001eb74fef6687ab4f88665"
def install
bin.install "guacamole"
end
end
end
on_arm do
if Hardware::CPU.is_64_bit?
url "https://github.com/padok-team/guacamole/releases/download/v0.3.0/guacamole_0.3.0_linux_arm64.tar.gz"
sha256 "d56fb08ee6d2f91cc68ff5ac830bf7e9028cda552847604d85fdb5bea48fad67"
def install
bin.install "guacamole"
end
end
end
end
end