From dbc07accaa4d7ec73160131f4510956a4c080573 Mon Sep 17 00:00:00 2001 From: karanngi Date: Wed, 19 Feb 2025 05:21:31 -0500 Subject: [PATCH] feat: add homebrew tap formula for microcks Signed-off-by: karanngi --- homebrew-tap/microcks.rb | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 homebrew-tap/microcks.rb diff --git a/homebrew-tap/microcks.rb b/homebrew-tap/microcks.rb new file mode 100644 index 0000000..9704674 --- /dev/null +++ b/homebrew-tap/microcks.rb @@ -0,0 +1,20 @@ +class Microcks < Formula + desc "Simple CLI for interacting with Microcks test APIs" + homepage "https://github.com/microcks/microcks-cli" + url "https://github.com/microcks/microcks-cli/archive/refs/tags/0.5.7.tar.gz" + sha256 "be49890c386736def0ba2ce1ddc002d49efaad04cc06188cd7f27593096274ea" + license "Apache-2.0" + + depends_on "go" => :build + + def install + ENV["CGO_ENABLED"] = "0" + + system "go", "build", "./main.go" + end + + test do + + end + + end \ No newline at end of file