Skip to content
Merged
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
46 changes: 46 additions & 0 deletions Formula/snmcp.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# typed: false
# frozen_string_literal: true

# This file was generated by GoReleaser. DO NOT EDIT.
class Snmcp < Formula
desc "StreamNative MCP Server (snmcp)"
homepage "https://streamnative.io/"
version "0.1.6"
license "Apache-2.0"

on_macos do
if Hardware::CPU.intel?
url "https://github.com/streamnative/streamnative-mcp-server/releases/download/v0.1.6/streamnative-mcp-server_Darwin_x86_64.tar.gz"
sha256 "31a69ad2fb42e42c53d2cf6670b33b30dd597a21b560bc0e9f6dc2eb5c9bf403"

def install
bin.install "snmcp"
end
end
if Hardware::CPU.arm?
url "https://github.com/streamnative/streamnative-mcp-server/releases/download/v0.1.6/streamnative-mcp-server_Darwin_arm64.tar.gz"
sha256 "60a347a5a32c1fb0b3c01b2b8240d51d979483e418e219dd46f8b942b07d560f"

def install
bin.install "snmcp"
end
end
end

on_linux do
if Hardware::CPU.intel? and Hardware::CPU.is_64_bit?
url "https://github.com/streamnative/streamnative-mcp-server/releases/download/v0.1.6/streamnative-mcp-server_Linux_x86_64.tar.gz"
sha256 "25156e90e76617fbe6bffe11043548b48ff5f5a77523b902aedf1f438d1c7730"
def install
bin.install "snmcp"
end
end
if Hardware::CPU.arm? and Hardware::CPU.is_64_bit?
url "https://github.com/streamnative/streamnative-mcp-server/releases/download/v0.1.6/streamnative-mcp-server_Linux_arm64.tar.gz"
sha256 "5b2316f9e8cb3308fc72bb376ad936b47a8610c3736d01311a50431baef8ec96"
def install
bin.install "snmcp"
end
end
end
end