Add nox11 flavor, so that it can be installed/used on headless servers. PR: 271880 Reported by: olgeni
43 lines
878 B
Makefile
43 lines
878 B
Makefile
PORTNAME= chatgpt-shell-cli
|
|
DISTVERSION= g20230516
|
|
PORTREVISION= 0
|
|
CATEGORIES= misc
|
|
|
|
MAINTAINER= nivit@FreeBSD.org
|
|
COMMENT= Shell script to use OpenAI's ChatGPT and DALL-E from the terminal
|
|
WWW= https://github.com/0xacx/chatGPT-shell-cli
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= bash:shells/bash \
|
|
curl:ftp/curl \
|
|
jq:textproc/jq \
|
|
xdg-open:devel/xdg-utils
|
|
|
|
FLAVORS= x11 nox11
|
|
FLAVOR?= ${FLAVORS:[1]}
|
|
|
|
nox11_PKGNAMESUFFIX= -nox11
|
|
|
|
USES= magick:${FLAVOR},run shebangfix
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= 0xacx
|
|
GH_PROJECT= chatGPT-shell-cli
|
|
GH_TAGNAME= 926587a
|
|
|
|
SHEBANG_FILES= ${WRKSRC}/chatgpt.sh
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/chatgpt
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} 's/open \("$${image_url}"\)/xdg-open \1/g' ${WRKSRC}/chatgpt.sh
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/chatgpt.sh ${STAGEDIR}${PREFIX}/bin/chatgpt
|
|
|
|
.include <bsd.port.mk>
|