-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirehose-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.7.3"
license "Apache-2.0"
on_macos do
on_intel do
url "https://github.com/streamingfast/firehose-core/releases/download/v1.7.3/firehose-core_darwin_x86_64.tar.gz"
sha256 "6d10d242be77d7eda56eb56045308bdf293ca7e1eb0b4a6fa0182a53a2ad33dd"
def install
bin.install "firecore"
end
end
on_arm do
url "https://github.com/streamingfast/firehose-core/releases/download/v1.7.3/firehose-core_darwin_arm64.tar.gz"
sha256 "d9ced3a47697aca36ba32fc30ebd5c3ae813bba0602755576d037812135cdef3"
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.7.3/firehose-core_linux_x86_64.tar.gz"
sha256 "31b5106225886ef93b879f8f6e0b8b319000ac15374852c11662e836a75f5e02"
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.7.3/firehose-core_linux_arm64.tar.gz"
sha256 "5062670a53d385d5b3ef0b07821491786d2d67e0ea61353d2709b18be78c6d02"
def install
bin.install "firecore"
end
end
end
end
end