commit 8f2b819e9e330699d68da59dabccc2f9ee39e5e1 Author: Sean Mitchell Date: Sat Feb 21 19:24:14 2026 -0500 add files diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000000000..dc3fed704827b --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,18 @@ +pkgbase = mcp-fetch-go-bin + pkgdesc = MCP server that fetches URLs and converts HTML to Markdown for LLM coding assistants + pkgver = 0.1.0 + pkgrel = 1 + url = https://github.com/arawak/mcp-fetch-go + arch = x86_64 + arch = aarch64 + license = MIT + provides = mcp-fetch-go + provides = gofetch + conflicts = mcp-fetch-go + conflicts = mcp-fetch-go-git + source_x86_64 = mcp-fetch-go-bin-0.1.0.tar.gz::https://github.com/arawak/mcp-fetch-go/releases/download/v0.1.0/mcp-fetch-go_0.1.0_linux_amd64.tar.gz + sha256sums_x86_64 = 05c72986d56cbc349f6fa03e5da30310b55f8a39f128391b0c3cf3dcaa0fe1fd + source_aarch64 = mcp-fetch-go-bin-0.1.0.tar.gz::https://github.com/arawak/mcp-fetch-go/releases/download/v0.1.0/mcp-fetch-go_0.1.0_linux_arm64.tar.gz + sha256sums_aarch64 = f95f86a99259db36373c12cffdb658583a1b51e3552b7d33c88a33a947f75061 + +pkgname = mcp-fetch-go-bin diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000000000..e42afce3a87b9 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,22 @@ +# Maintainer: Sean Mitchell +pkgname=mcp-fetch-go-bin +pkgver=0.1.0 +pkgrel=1 +pkgdesc="MCP server that fetches URLs and converts HTML to Markdown for LLM coding assistants" +arch=('x86_64' 'aarch64') +url="https://github.com/arawak/mcp-fetch-go" +license=('MIT') +provides=('mcp-fetch-go' 'gofetch') +conflicts=('mcp-fetch-go' 'mcp-fetch-go-git') + +source_x86_64=("${pkgname}-${pkgver}.tar.gz::https://github.com/arawak/mcp-fetch-go/releases/download/v${pkgver}/mcp-fetch-go_${pkgver}_linux_amd64.tar.gz") +source_aarch64=("${pkgname}-${pkgver}.tar.gz::https://github.com/arawak/mcp-fetch-go/releases/download/v${pkgver}/mcp-fetch-go_${pkgver}_linux_arm64.tar.gz") + +sha256sums_x86_64=('05c72986d56cbc349f6fa03e5da30310b55f8a39f128391b0c3cf3dcaa0fe1fd') +sha256sums_aarch64=('f95f86a99259db36373c12cffdb658583a1b51e3552b7d33c88a33a947f75061') + +package() { + install -Dm755 gofetch "${pkgdir}/usr/bin/gofetch" + install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md" +}