mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
37 lines
742 B
Makefile
37 lines
742 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= serf
|
|
PORTVERSION= 0.8.3
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= sysutils
|
|
PKGNAMEPREFIX= hashicorp-
|
|
|
|
MAINTAINER= swills@FreeBSD.org
|
|
COMMENT= Service discovery and configuration made easy
|
|
|
|
LICENSE= MPL20
|
|
|
|
BUILD_DEPENDS= go:lang/go
|
|
|
|
USE_GITHUB= yes
|
|
|
|
GH_ACCOUNT= hashicorp
|
|
GH_SUBDIR:= src/github.com/${GH_ACCOUNT}/${PORTNAME}
|
|
|
|
USE_RC_SUBR= serf
|
|
|
|
USERS= serf
|
|
GROUPS= serf
|
|
|
|
PLIST_FILES= bin/serf
|
|
|
|
do-build:
|
|
@cd ${WRKSRC}/src/github.com/${GH_ACCOUNT}/${PORTNAME}; \
|
|
${SETENV} ${MAKE_ENV} GOPATH=${WRKSRC}:${WRKSRC}/vendor/ \
|
|
go build -o bin/${PORTNAME} ./cmd/serf/
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/github.com/${GH_ACCOUNT}/${PORTNAME}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|