# Originally authored by @jellydn (https://github.com/jellydn/homebrew-tap). # Maintained in-repo; auto-bumped by .github/workflows/release.yaml on stable releases. class FffMcp < Formula desc "Fast file search toolkit for AI agents (MCP server)" homepage "https://github.com/dmtrKovalenko/fff.nvim" license "MIT" version "0.9.6" LIVECHECK_REPO = "dmtrKovalenko/fff.nvim".freeze RELEASE_BASE = "https://github.com/dmtrKovalenko/fff.nvim/releases/download".freeze on_macos do on_arm do url "#{RELEASE_BASE}/v#{version}/fff-mcp-aarch64-apple-darwin" sha256 "29a7fadeafb062f3e5954b1ab8c69e14dca24f5e061cd8d3b1ea1bab385a3754" end on_intel do url "#{RELEASE_BASE}/v#{version}/fff-mcp-x86_64-apple-darwin" sha256 "58259324c2c13a1b6f24f13138c2cd3eae9ff20e05201a539beb8f2044a651aa" end end on_linux do on_arm do url "#{RELEASE_BASE}/v#{version}/fff-mcp-aarch64-unknown-linux-gnu" sha256 "91e6fa14e040588dc92de854e35020536f1e2458ce3386b2b727b2e7a88f6684" end on_intel do url "#{RELEASE_BASE}/v#{version}/fff-mcp-x86_64-unknown-linux-gnu" sha256 "d1bd2b89a79e8eda71b1754260499cec1feaafd2adf372e92371c8d6b68509a3" end end livecheck do url "https://github.com/#{LIVECHECK_REPO}/releases/latest" strategy :github_latest end def install if OS.mac? if Hardware::CPU.arm? bin.install "fff-mcp-aarch64-apple-darwin" => "fff-mcp" elsif Hardware::CPU.intel? bin.install "fff-mcp-x86_64-apple-darwin" => "fff-mcp" end elsif OS.linux? if Hardware::CPU.arm? bin.install "fff-mcp-aarch64-unknown-linux-gnu" => "fff-mcp" elsif Hardware::CPU.intel? bin.install "fff-mcp-x86_64-unknown-linux-gnu" => "fff-mcp" end end end test do system bin/"fff-mcp", "--healthcheck" end end