Skip to content

Commit

Permalink
feat: add cryo
Browse files Browse the repository at this point in the history
  • Loading branch information
onbjerg committed Aug 27, 2024
1 parent f3c6c50 commit e46c077
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Formula/cryo.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
class Cryo < Formula
desc "The easiest way to extract blockchain data"

Check failure on line 2 in Formula/cryo.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-14)

FormulaAudit/Desc: Description shouldn't start with an article.
homepage "https://github.com/paradigmxyz/cryo"
url "https://github.com/paradigmxyz/cryo.git",
tag: "0.2.0",
revision: "b2c221a6f4f2104e0a6022780cb44a59fed6a172"
license any_of: ["Apache-2.0", "MIT"]
head "https://github.com/paradigmxyz/cryo.git", branch: "main"

livecheck do
url :stable
strategy :github_latest
end

depends_on "rust" => :build

def install
cd "crates/cli" do
system "cargo", "install", *std_cargo_args
end
end

test do
system "#{bin}/cryo", "--help"
end
end

0 comments on commit e46c077

Please sign in to comment.