-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (41 loc) · 1.44 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
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class DiveCliATv0011Beta < Formula
desc "CLI for Dive Package"
homepage "https://hugobyte.com"
version "0.0.11-beta"
license "Apache 2.0"
on_macos do
if Hardware::CPU.arm?
url "https://github.com/HugoByte/DIVE/releases/download/v0.0.11-beta/dive-cli_v0.0.11-beta_darwin_arm64.tar.gz"
sha256 "9e4d815ca986aaf423c163c0dc2b2d643828550b2dd1e41c5d9306a2ad059a01"
def install
bin.install "dive"
end
end
if Hardware::CPU.intel?
url "https://github.com/HugoByte/DIVE/releases/download/v0.0.11-beta/dive-cli_v0.0.11-beta_darwin_amd64.tar.gz"
sha256 "59755a482ba703635a2ffd4f799b0175ef8f03debf20c61704ec65eb666d0637"
def install
bin.install "dive"
end
end
end
on_linux do
if Hardware::CPU.intel?
url "https://github.com/HugoByte/DIVE/releases/download/v0.0.11-beta/dive-cli_v0.0.11-beta_linux_amd64.tar.gz"
sha256 "8d10da09e1c194d9f4180ed20898e692dfb18aced7a2450d2743f5f4302e8652"
def install
bin.install "dive"
end
end
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/HugoByte/DIVE/releases/download/v0.0.11-beta/dive-cli_v0.0.11-beta_linux_arm64.tar.gz"
sha256 "0b2a8fcff038c3d7b3fe2da1a9efbb0b4fbd4e1dcbc7d0b3a9f706df27bc58ad"
def install
bin.install "dive"
end
end
end
end