- Add UPDATING entry about config file location change - Pet portclippy Changes: https://github.com/erroneousboat/slack-term/releases/tag/v0.5.0 Reported by: portscout
37 lines
699 B
Makefile
37 lines
699 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= slack-term
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.5.0
|
|
CATEGORIES= net-im
|
|
|
|
MAINTAINER= dmgk@FreeBSD.org
|
|
COMMENT= Slack client for your terminal
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= go:modules
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= erroneousboat
|
|
GH_SUBDIR= src/github.com/${GH_ACCOUNT}/${PORTNAME}
|
|
|
|
SUB_FILES= pkg-message
|
|
SUB_LIST= PORTNAME=${PORTNAME}
|
|
|
|
PLIST_FILES= bin/slack-term
|
|
|
|
PORTDOCS= README.md
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@cd ${WRKSRC}/vendor/github.com/OpenPeeDeeP/xdg && \
|
|
${RLN} xdg_linux.go xdg_freebsd.go
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|