-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (45 loc) · 1.67 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.
require_relative "download_strategy"
class BaywatchAT021 < Formula
desc ""
homepage "https://github.com/padok-team/baywatch"
version "0.2.1"
on_macos do
on_intel do
url "https://github.com/padok-team/baywatch/releases/download/v0.2.1/baywatch_0.2.1_darwin_amd64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "0473f881cdc221379b820dacdeb5e71c330cf8a3f169edd5f8717012097df500"
def install
bin.install "baywatch"
end
end
on_arm do
url "https://github.com/padok-team/baywatch/releases/download/v0.2.1/baywatch_0.2.1_darwin_arm64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "4cd2dff88daac13618382d86f15b57fe4c7522ad74d7fec45432f5f061b05fea"
def install
bin.install "baywatch"
end
end
end
on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://github.com/padok-team/baywatch/releases/download/v0.2.1/baywatch_0.2.1_linux_amd64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "e6985fb6e4fe8ee9f6179b606fb6a89e7b6bf4ebddf59df2f0317f8ee448ddd1"
def install
bin.install "baywatch"
end
end
end
on_arm do
if Hardware::CPU.is_64_bit?
url "https://github.com/padok-team/baywatch/releases/download/v0.2.1/baywatch_0.2.1_linux_arm64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "b9c5f2ef46da2cf77696ef290c794390036fe483489004be85202522b9a5bad5"
def install
bin.install "baywatch"
end
end
end
end
end