48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= go-bindata
|
|
PORTVERSION= 3.0.5
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= swills@FreeBSD.org
|
|
COMMENT= Generates Go code from any file
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/bin/go:${PORTSDIR}/lang/go
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= jteeuwen
|
|
|
|
PLIST_FILES= bin/go-bindata
|
|
|
|
PORTDOCS= CONTRIBUTING.md LICENSE README.md
|
|
|
|
STRIP= # stripping can break go binaries
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-patch:
|
|
@cd ${WRKSRC} ; ${MKDIR} src/github.com/${GH_ACCOUNT}/${GH_PROJECT} ; \
|
|
${CP} -R CONTRIBUTING.md LICENSE README.md asset.go bytewriter.go \
|
|
config.go convert.go debug.go doc.go go-bindata release.go \
|
|
stringwriter.go testdata toc.go \
|
|
src/github.com/${GH_ACCOUNT}/${GH_PROJECT}
|
|
|
|
do-build:
|
|
cd ${WRKSRC} ; \
|
|
${SETENV} GOPATH=${WRKSRC} go build -o ${PORTNAME}/${PORTNAME} ${PORTNAME}/main.go ${PORTNAME}/version.go
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}/${PORTNAME} \
|
|
${STAGEDIR}${PREFIX}/bin/
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
.for x in ${PORTDOCS}
|
|
${INSTALL_MAN} ${WRKSRC}/${x} \
|
|
${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|