1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00
freebsd-ports/www/mattermost-server/Makefile
Steve Wills 37355f1fe7 www/mattermost-{webapp,server}: Update to 5.15.0
While here, clean up rc script

PR:		240132
Submitted by:	Raúl <raul.munoz@custos.es>
Approved by:	loic.blot@unix-experience.fr (maintainer)
2019-10-15 13:09:38 +00:00

43 lines
1.0 KiB
Makefile

# $FreeBSD$
PORTNAME= mattermost-server
PORTVERSION= 5.15.0
DISTVERSIONPREFIX= v
CATEGORIES= www
MAINTAINER= loic.blot@unix-experience.fr
COMMENT= Open source Slack-alternative in Golang and React
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
ONLY_FOR_ARCHS= amd64 armv6 armv7 i386
RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss \
mattermost-webapp>=${PORTVERSION}:www/mattermost-webapp
USES= go:modules
GO_TARGET= ./cmd/mattermost
GO_BUILDFLAGS= -ldflags="-X github.com/mattermost/mattermost-server/model.BuildNumber=${PORTVERSION}"
USE_RC_SUBR= mattermostd
USE_GITHUB= yes
GH_ACCOUNT= mattermost
WWWDIR= ${PREFIX}/www/mattermost
MATTERMOSTD_USER= mattermost
MATTERMOSTD_GROUP= mattermost
USERS= ${MATTERMOSTD_USER}
GROUPS= ${MATTERMOSTD_GROUP}
post-install:
${MV} ${STAGEDIR}${PREFIX}/bin/mattermost ${STAGEDIR}${PREFIX}/bin/mattermostd
${MKDIR} ${STAGEDIR}${WWWDIR}
cd ${GO_WRKSRC} && ${COPYTREE_SHARE} 'fonts i18n templates' ${STAGEDIR}${WWWDIR}
.include <bsd.port.mk>