-
Notifications
You must be signed in to change notification settings - Fork 0
/
firehose-starknet.rb
52 lines (45 loc) · 1.54 KB
/
firehose-starknet.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 FirehoseStarknet < Formula
desc ""
homepage "https://github.com/streamingfast/firehose-starknet"
version "0.1.0"
license "Apache-2.0"
on_macos do
on_intel do
url "https://github.com/streamingfast/firehose-starknet/releases/download/v0.1.0/firehose-starknet_darwin_x86_64.tar.gz"
sha256 "a36de1edeac0007ada0bcbf3bb0e31ee866e7d880ef96e953a321daab78306d6"
def install
bin.install "firestarknet"
end
end
on_arm do
url "https://github.com/streamingfast/firehose-starknet/releases/download/v0.1.0/firehose-starknet_darwin_arm64.tar.gz"
sha256 "f782f074d0e6949ba9f98d1622f724bce4723767a5051e3918ab2e241c179c12"
def install
bin.install "firestarknet"
end
end
end
on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://github.com/streamingfast/firehose-starknet/releases/download/v0.1.0/firehose-starknet_linux_x86_64.tar.gz"
sha256 "d8556e4796139830f6d1409697023394b9dc4af9ec52d85562c422e16a8ad5c1"
def install
bin.install "firestarknet"
end
end
end
on_arm do
if Hardware::CPU.is_64_bit?
url "https://github.com/streamingfast/firehose-starknet/releases/download/v0.1.0/firehose-starknet_linux_arm64.tar.gz"
sha256 "570f3b70d7536a9ce3bf15519a3bffca8491b6779cf076ca89b92f3c9f8da9d1"
def install
bin.install "firestarknet"
end
end
end
end
end