-
Notifications
You must be signed in to change notification settings - Fork 0
/
substreams-sink-files.rb
48 lines (41 loc) · 1.58 KB
/
substreams-sink-files.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
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class SubstreamsSinkFiles < Formula
desc ""
homepage "https://github.com/streamingfast/substreams-sink-files"
version "2.1.0"
license "Apache-2.0"
on_macos do
if Hardware::CPU.arm?
url "https://github.com/streamingfast/substreams-sink-files/releases/download/v2.1.0/substreams-sink-files_darwin_arm64.tar.gz"
sha256 "96b9191a649a79de20687461cea4c05dbd1f493497586a2e82f4ad6db030f8df"
def install
bin.install "substreams-sink-files"
end
end
if Hardware::CPU.intel?
url "https://github.com/streamingfast/substreams-sink-files/releases/download/v2.1.0/substreams-sink-files_darwin_x86_64.tar.gz"
sha256 "e948ee24af39d0f424227c0bc2277ff4bb96e5e07f22fe48d8cc5775e696f45a"
def install
bin.install "substreams-sink-files"
end
end
end
on_linux do
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/streamingfast/substreams-sink-files/releases/download/v2.1.0/substreams-sink-files_linux_arm64.tar.gz"
sha256 "800f385934f8b8724da08aec9f3025ce5eec9eae8ca8a34d3b6251c8a0d7fc81"
def install
bin.install "substreams-sink-files"
end
end
if Hardware::CPU.intel?
url "https://github.com/streamingfast/substreams-sink-files/releases/download/v2.1.0/substreams-sink-files_linux_x86_64.tar.gz"
sha256 "f634372e16821372d9fc87ea3e9574c436474ba1b58255a617270dd828ea2feb"
def install
bin.install "substreams-sink-files"
end
end
end
end