Skip to content

Commit 55c14d2

Browse files
Created by streamnative-mcp-server-release-workflow (#103)
Co-authored-by: freeznet <freeznet@users.noreply.github.com>
1 parent bc66183 commit 55c14d2

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

Formula/snmcp.rb

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# typed: false
2+
# frozen_string_literal: true
3+
4+
# This file was generated by GoReleaser. DO NOT EDIT.
5+
class Snmcp < Formula
6+
desc "StreamNative MCP Server (snmcp)"
7+
homepage "https://streamnative.io/"
8+
version "0.1.6"
9+
license "Apache-2.0"
10+
11+
on_macos do
12+
if Hardware::CPU.intel?
13+
url "https://github.com/streamnative/streamnative-mcp-server/releases/download/v0.1.6/streamnative-mcp-server_Darwin_x86_64.tar.gz"
14+
sha256 "31a69ad2fb42e42c53d2cf6670b33b30dd597a21b560bc0e9f6dc2eb5c9bf403"
15+
16+
def install
17+
bin.install "snmcp"
18+
end
19+
end
20+
if Hardware::CPU.arm?
21+
url "https://github.com/streamnative/streamnative-mcp-server/releases/download/v0.1.6/streamnative-mcp-server_Darwin_arm64.tar.gz"
22+
sha256 "60a347a5a32c1fb0b3c01b2b8240d51d979483e418e219dd46f8b942b07d560f"
23+
24+
def install
25+
bin.install "snmcp"
26+
end
27+
end
28+
end
29+
30+
on_linux do
31+
if Hardware::CPU.intel? and Hardware::CPU.is_64_bit?
32+
url "https://github.com/streamnative/streamnative-mcp-server/releases/download/v0.1.6/streamnative-mcp-server_Linux_x86_64.tar.gz"
33+
sha256 "25156e90e76617fbe6bffe11043548b48ff5f5a77523b902aedf1f438d1c7730"
34+
def install
35+
bin.install "snmcp"
36+
end
37+
end
38+
if Hardware::CPU.arm? and Hardware::CPU.is_64_bit?
39+
url "https://github.com/streamnative/streamnative-mcp-server/releases/download/v0.1.6/streamnative-mcp-server_Linux_arm64.tar.gz"
40+
sha256 "5b2316f9e8cb3308fc72bb376ad936b47a8610c3736d01311a50431baef8ec96"
41+
def install
42+
bin.install "snmcp"
43+
end
44+
end
45+
end
46+
end

0 commit comments

Comments
 (0)