Skip to content

Commit 03a9ce7

Browse files
committed
feat: add tbl
1 parent 04f5a38 commit 03a9ce7

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

Formula/tbl.rb

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
end
21+
end
22+
23+
test do
24+
system "#{bin}/tbl", "--help"
25+
end
26+
end

0 commit comments

Comments
 (0)