-
Notifications
You must be signed in to change notification settings - Fork 1
/
baywatch@0.2.0.rb
52 lines (45 loc) · 1.67 KB
/
baywatch@0.2.0.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
52
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
require_relative "download_strategy"
class BaywatchAT020 < Formula
desc ""
homepage "https://github.com/padok-team/baywatch"
version "0.2.0"
on_macos do
on_intel do
url "https://github.com/padok-team/baywatch/releases/download/v0.2.0/baywatch_0.2.0_darwin_amd64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "431a54ceda6f58dcffd8818f0d6e21b1a814a8ac83427e7be636a539533e289f"
def install
bin.install "baywatch"
end
end
on_arm do
url "https://github.com/padok-team/baywatch/releases/download/v0.2.0/baywatch_0.2.0_darwin_arm64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "5d31c363bdfb27a13d7f2a3223b83ed6d7f6901ca173137c7777d4438f7f0578"
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.0/baywatch_0.2.0_linux_amd64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "b7b925d10cb108cf47abc6110774d00976ffc7f8edc7ec0a188075383d1b9eab"
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.0/baywatch_0.2.0_linux_arm64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "4e69ca426f8f263f2d2e2ce6f2c615889f265f4a2a2771835bbf144deeea92b8"
def install
bin.install "baywatch"
end
end
end
end
end