-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubstreams-sink-postgres.rb
48 lines (41 loc) · 1.62 KB
/
substreams-sink-postgres.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 SubstreamsSinkPostgres < Formula
desc ""
homepage "https://github.com/streamingfast/substreams-sink-postgres"
version "2.5.4"
license "Apache-2.0"
on_macos do
if Hardware::CPU.arm?
url "https://github.com/streamingfast/substreams-sink-postgres/releases/download/v2.5.4/substreams-sink-postgres_darwin_arm64.tar.gz"
sha256 "ab5a117ac331411e7c7e682ff9878e7476c79b1096757f2ea56fd63161f2af65"
def install
bin.install "substreams-sink-postgres"
end
end
if Hardware::CPU.intel?
url "https://github.com/streamingfast/substreams-sink-postgres/releases/download/v2.5.4/substreams-sink-postgres_darwin_x86_64.tar.gz"
sha256 "b2acc0a7edc94fd83729dfb107445c6633ad12fc4a91749b293759c96d23a426"
def install
bin.install "substreams-sink-postgres"
end
end
end
on_linux do
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/streamingfast/substreams-sink-postgres/releases/download/v2.5.4/substreams-sink-postgres_linux_arm64.tar.gz"
sha256 "5b285ef87ad4de1cc5c80e2688ba943b85d75a19353d3bcdcadf896398dd79c6"
def install
bin.install "substreams-sink-postgres"
end
end
if Hardware::CPU.intel?
url "https://github.com/streamingfast/substreams-sink-postgres/releases/download/v2.5.4/substreams-sink-postgres_linux_x86_64.tar.gz"
sha256 "4fae1d55090bac293794b305e20ad96cb906a890964f874ed8e3126eb368ab4f"
def install
bin.install "substreams-sink-postgres"
end
end
end
end