mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
c27d4e377f
All ports now should use MPL[10|11|20] license. Approved by: portmgr (blanket)
47 lines
1.0 KiB
Makefile
47 lines
1.0 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= envconsul
|
|
PORTVERSION= 0.7.2
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= swills@FreeBSD.org
|
|
COMMENT= Populate values from Consul into a process environment
|
|
|
|
LICENSE= MPL20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/bin/go:lang/go
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= hashicorp
|
|
GH_SUBDIR= src/github.com/${GH_ACCOUNT}/${PORTNAME}
|
|
|
|
PLIST_FILES= bin/envconsul
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
PORTDOCS= README.md
|
|
COMMIT= 7ece735
|
|
GO_LDFLAGS= -ldflags="-s -w \
|
|
-X main.Name=${PORTNAME} \
|
|
-X main.Version=${PORTVERSION} \
|
|
-X main.GitCommit=${COMMIT}"
|
|
|
|
do-build:
|
|
@cd ${WRKSRC}/src/github.com/hashicorp/envconsul; \
|
|
${SETENV} ${BUILD_ENV} GOPATH=${WRKSRC} \
|
|
go build ${GO_LDFLAGS}\
|
|
-o bin/envconsul
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/github.com/hashicorp/envconsul/bin/envconsul ${STAGEDIR}${PREFIX}/bin/envconsul
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for doc in ${PORTDOCS}
|
|
${CP} ${WRKSRC}/src/github.com/hashicorp/envconsul/${doc} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|