blob: 63a88a2205d708061e2728c322eae4f1428c5b13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Maintainer: Acuvity
pkgname=minibridge-git
pkgdesc="Make your MCP servers secure and production ready"
url="https://github.com/acuvity/minibridge"
pkgver=v0.4.0.r5.g2c0cf86
pkgrel=1
license=(Apache2)
arch=(any)
makedepends=(go)
source=("${pkgname}::git+${url}")
sha1sums=('SKIP')
provides=("minibridge")
conflicts=("minibridge")
pkgver() {
cd "${srcdir}/${pkgname}"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "${srcdir}/${pkgname}" || exit
make build
}
package() {
install -Dm755 "${srcdir}/${pkgname}/minibridge" "${pkgdir}/usr/bin/minibridge"
}
|