-
Notifications
You must be signed in to change notification settings - Fork 1
/
baywatch@0.1.3.rb
48 lines (41 loc) · 1.64 KB
/
baywatch@0.1.3.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
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
require_relative "download_strategy"
class BaywatchAT013 < Formula
desc ""
homepage "https://github.com/padok-team/baywatch"
version "0.1.3"
on_macos do
if Hardware::CPU.arm?
url "https://github.com/padok-team/baywatch/releases/download/v0.1.3/baywatch_0.1.3_darwin_arm64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "2a7ac42cacf66e6756f0d693400fcabfa681bf56025070c8ad98655b5f9b9059"
def install
bin.install "baywatch"
end
end
if Hardware::CPU.intel?
url "https://github.com/padok-team/baywatch/releases/download/v0.1.3/baywatch_0.1.3_darwin_amd64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "dd2f297e9d1bdb972d9564416b01bf07eb3aba6f7918255a64dc06433067cf40"
def install
bin.install "baywatch"
end
end
end
on_linux do
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/padok-team/baywatch/releases/download/v0.1.3/baywatch_0.1.3_linux_arm64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "10672d70476355f8e27050992e8a33e72db5d990df28b2bab096a96d661c95f3"
def install
bin.install "baywatch"
end
end
if Hardware::CPU.intel?
url "https://github.com/padok-team/baywatch/releases/download/v0.1.3/baywatch_0.1.3_linux_amd64.tar.gz", using: GitHubPrivateRepositoryReleaseDownloadStrategy
sha256 "c9db8f36bce6c2738c1cc45f5205eb83bef8f9d53f4a2920a4898549fc408221"
def install
bin.install "baywatch"
end
end
end
end