-
Notifications
You must be signed in to change notification settings - Fork 0
/
firehose-core.rb
52 lines (45 loc) · 1.48 KB
/
firehose-core.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.
class FirehoseCore < Formula
desc ""
homepage "https://github.com/streamingfast/firehose-core"
version "1.6.8"
license "Apache-2.0"
on_macos do
on_intel do
url "https://github.com/streamingfast/firehose-core/releases/download/v1.6.8/firehose-core_darwin_x86_64.tar.gz"
sha256 "7ace2235a801c7a052107acdc0b77c58299a021006910795fafa11408f94b919"
def install
bin.install "firecore"
end
end
on_arm do
url "https://github.com/streamingfast/firehose-core/releases/download/v1.6.8/firehose-core_darwin_arm64.tar.gz"
sha256 "33c373cd39fa1ef3413f6d4f4499a1ca3e470640946569d2edc3b86c73c82c4b"
def install
bin.install "firecore"
end
end
end
on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://github.com/streamingfast/firehose-core/releases/download/v1.6.8/firehose-core_linux_x86_64.tar.gz"
sha256 "f54d591f0587851a5fde1d291c5fdafc99cc352e96ce0cf6b3357a41454edbbd"
def install
bin.install "firecore"
end
end
end
on_arm do
if Hardware::CPU.is_64_bit?
url "https://github.com/streamingfast/firehose-core/releases/download/v1.6.8/firehose-core_linux_arm64.tar.gz"
sha256 "c2d67a5d3422975cf99bfb4fec3d099e169ed4629705d79a56022c18d553e927"
def install
bin.install "firecore"
end
end
end
end
end