forked from Lainports/opnsense-ports
44 lines
1 KiB
Makefile
44 lines
1 KiB
Makefile
# Created by: Torsten Zuehlsdorff <tz@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gitlab-shell
|
|
PORTVERSION= 7.1.4
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= mfechner@FreeBSD.org
|
|
COMMENT= GitLab Shell handles git commands for GitLab
|
|
|
|
LICENSE= MIT
|
|
|
|
BUILD_DEPENDS= gem:devel/ruby-gems \
|
|
go>=1.5.3:lang/go
|
|
|
|
USE_GITLAB= yes
|
|
GL_ACCOUNT= gitlab-org
|
|
# Find the commit hash here: https://gitlab.com/gitlab-org/gitlab-shell/tags
|
|
GL_COMMIT= 6a15f1db609acd6b7dadb2a88d4f5aff3500f160
|
|
|
|
USERS= git
|
|
GROUPS= git
|
|
|
|
INSTALL_TARGET=install-strip
|
|
|
|
post-patch:
|
|
${MV} ${WRKSRC}/config.yml.example ${WRKSRC}/config.yml.sample
|
|
|
|
do-build:
|
|
export GOCACHE=${WRKSRC}/go && ${WRKSRC}/bin/compile
|
|
|
|
pre-install:
|
|
${RM} -rf ${WRKSRC}/go
|
|
${RM} -rf ${WRKSRC}/go_build
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR})
|
|
@${MKDIR} ${STAGEDIR}/var/log/gitlab-shell
|
|
${STRIP_CMD} ${STAGEDIR}${DATADIR}/bin/gitaly-upload-pack
|
|
${STRIP_CMD} ${STAGEDIR}${DATADIR}/bin/gitaly-receive-pack
|
|
${STRIP_CMD} ${STAGEDIR}${DATADIR}/bin/gitaly-upload-archive
|
|
|
|
.include <bsd.port.mk>
|