blob: 2d9a785aaf34f56cf467ae7da74d365e2bf39cf9 (
plain) (
blame)
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
29
30
31
32
33
|
PORTNAME= cliproxyapi
DISTVERSIONPREFIX= v
DISTVERSION= 7.2.83
PORTREVISION= 2
CATEGORIES= net
MAINTAINER= olgeni@FreeBSD.org
COMMENT= Proxy providing OpenAI/Gemini/Claude/Codex/Grok compatible APIs
WWW= https://github.com/router-for-me/CLIProxyAPI
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= go:1.26,modules
GO_MODULE= github.com/router-for-me/CLIProxyAPI/v7
GO_TARGET= ./cmd/server:cliproxyapi
PLIST_FILES= bin/cliproxyapi
PORTDOCS= README.md config.example.yaml env.cluster.example env.example
OPTIONS_DEFINE= DOCS
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README.md ${WRKSRC}/config.example.yaml \
${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/.env.example ${STAGEDIR}${DOCSDIR}/env.example
${INSTALL_DATA} ${WRKSRC}/.env.cluster.example \
${STAGEDIR}${DOCSDIR}/env.cluster.example
.include <bsd.port.mk>
|