-
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 BaywatchAT030 < Formula
desc ""
homepage "https://github.com/padok-team/baywatch"
version "0.3.0"
on_macos do
on_intel do
url "https://github.com/padok-team/baywatch/releases/download/v0.3.0/baywatch_0.3.0_darwin_amd64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "01fa1e3eb9e45d14d5b813e8363c15a3b120bce91835422e02f7a636cbbe9de0"
def install
bin.install "baywatch"
end
end
on_arm do
url "https://github.com/padok-team/baywatch/releases/download/v0.3.0/baywatch_0.3.0_darwin_arm64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "0f1ad1dc568ba9e0e7eeb0cd63d742ed290f461769cedc8331610b98d109e7eb"
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.3.0/baywatch_0.3.0_linux_amd64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "61a28c8020d9534f010b93499ff067368b4340a78c8905ebca8c07a8bd1d3a39"
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.3.0/baywatch_0.3.0_linux_arm64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "93fd9126a370d560b49c45dd573f14a0a9891ab5d88053bbbbc3f9352a93de36"
def install
bin.install "baywatch"
end
end
end
end
end