This repository was archived by the owner on Dec 11, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ # typed: false
2
+ # frozen_string_literal: true
3
+
4
+ # This file was generated by GoReleaser. DO NOT EDIT.
5
+ class DatabrewBlink < Formula
6
+ desc "Open Source stream processing framework"
7
+ homepage "https://github.com/usedatabrew/blink"
8
+ version "1.4.2"
9
+
10
+ on_macos do
11
+ url "https://github.com/usedatabrew/blink/releases/download/v1.4.2/homebrew-databrewblink_1.4.2_darwin_amd64.tar.gz"
12
+ sha256 "5bcbc4904cd94a434cda419c5f2eb58fe285c3306ce26f84f1f8e347b3869782"
13
+
14
+ def install
15
+ bin . install "databrew-blink"
16
+ end
17
+
18
+ if Hardware ::CPU . arm?
19
+ def caveats
20
+ <<~EOS
21
+ The darwin_arm64 architecture is not supported for the DatabrewBlink
22
+ formula at this time. The darwin_amd64 binary may work in compatibility
23
+ mode, but it might not be fully supported.
24
+ EOS
25
+ end
26
+ end
27
+ end
28
+
29
+ on_linux do
30
+ if Hardware ::CPU . intel?
31
+ url "https://github.com/usedatabrew/blink/releases/download/v1.4.2/homebrew-databrewblink_1.4.2_linux_amd64.tar.gz"
32
+ sha256 "72f87a557805ae8abf5d2b8c9dde2eecc1d494007606b130be5fcfa9dbb83d5e"
33
+
34
+ def install
35
+ bin . install "databrew-blink"
36
+ end
37
+ end
38
+ end
39
+ end
You can’t perform that action at this time.
0 commit comments