-
Notifications
You must be signed in to change notification settings - Fork 0
/
firehose-solana.rb
52 lines (45 loc) · 1.5 KB
/
firehose-solana.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 FirehoseSolana < Formula
desc ""
homepage "https://github.com/streamingfast/firehose-solana"
version "1.1.1"
license "Apache-2.0"
on_macos do
on_intel do
url "https://github.com/streamingfast/firehose-solana/releases/download/v1.1.1/firehose-solana_darwin_x86_64.tar.gz"
sha256 "cd2863e2dc7145e6ba479775d43f06567e6344b1440901f4a528b699b394e690"
def install
bin.install "firesol"
end
end
on_arm do
url "https://github.com/streamingfast/firehose-solana/releases/download/v1.1.1/firehose-solana_darwin_arm64.tar.gz"
sha256 "e866c3bae756d356605afec6dcfc04dddb59577efcefdff79f65d5d6602bcfe8"
def install
bin.install "firesol"
end
end
end
on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://github.com/streamingfast/firehose-solana/releases/download/v1.1.1/firehose-solana_linux_x86_64.tar.gz"
sha256 "31557d4c4fd8692c6c6a607792ac98c7b6b26bb29eadeb3a81241668ffb5a516"
def install
bin.install "firesol"
end
end
end
on_arm do
if Hardware::CPU.is_64_bit?
url "https://github.com/streamingfast/firehose-solana/releases/download/v1.1.1/firehose-solana_linux_arm64.tar.gz"
sha256 "da3449ddd90262ae9cad8339f52a8550d8784714a262528d3c82898ebedd4b7a"
def install
bin.install "firesol"
end
end
end
end
end