We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04f5a38 commit 03a9ce7Copy full SHA for 03a9ce7
Formula/tbl.rb
@@ -0,0 +1,26 @@
1
+class Tbl < Formula
2
+ desc "Swiss army knife for parquet read and write operations"
3
+ homepage "https://github.com/paradigmxyz/tbl"
4
+ url "https://github.com/paradigmxyz/tbl.git",
5
+ tag: "0.1.1",
6
+ revision: "4edd598592f6c8bca30e04de6b49b1214d3e9dc5"
7
+ license any_of: ["Apache-2.0", "MIT"]
8
+ head "https://github.com/paradigmxyz/tbl.git", branch: "main"
9
+
10
+ livecheck do
11
+ url :stable
12
+ regex(/^v?(\d+(?:\.\d+)+)$/i)
13
+ end
14
15
+ depends_on "rust" => :build
16
17
+ def install
18
+ cd "crates/tbl-cli" do
19
+ system "cargo", "install", *std_cargo_args
20
21
22
23
+ test do
24
+ system "#{bin}/tbl", "--help"
25
26
+end
0 commit comments