Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add mesc #56

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions Formula/mesc.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
class Mesc < Formula
desc "Ethereum endpoint management tool"
homepage "https://github.com/paradigmxyz/mesc"
url "https://github.com/paradigmxyz/mesc.git",
tag: "0.2.1",
revision: "e4318f96b5094b3fcfcfdcd603f380886e6e3624"
license any_of: ["Apache-2.0", "MIT"]
head "https://github.com/paradigmxyz/mesc.git", branch: "main"

livecheck do
url :stable
regex(/^v?(\d+(?:\.\d+)+)$/i)
end

depends_on "rust" => :build

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

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