freebsd-ports/net/syncthing-cli/Makefile
2015-02-24 22:01:56 +00:00

61 lines
2.3 KiB
Makefile

# Created by: Steve Wills <swills@FreeBSD.org>
# $FreeBSD$
PORTNAME= syncthing-cli
PORTVERSION= 0.1.0.2015022401
PORTREVISION= 0
CATEGORIES= net
MASTER_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/archive/${GH_TAGNAME}.tar.gz?dummy=/:group1 \
https://github.com/syncthing/syncthing/archive/v${SYNCTHING_VER}.tar.gz?dummy=/:group2 \
https://codeload.github.com/AudriusButkevicius/cli/legacy.tar.gz/7f561c7?dummy=/:group3
DISTFILES= syncthing-cli-${PORTVERSION}${EXTRACT_SUFX}:group1 \
syncthing-${SYNCTHING_VER}${EXTRACT_SUFX}:group2 \
AudriusButkevicius-cli-7f561c7${EXTACT_SUFX}:group3
MAINTAINER= swills@FreeBSD.org
COMMENT= Syncthing CLI
BUILD_DEPENDS= ${LOCALBASE}/bin/go:${PORTSDIR}/lang/go
GH_ACCOUNT= syncthing
GH_PROJECT= syncthing-cli
GH_COMMIT= 80af98e740cc58f3fc96101afe50fbb3e9a80dc3
GH_TAGNAME= ${GH_COMMIT}
SYNCTHING_VER= 0.10.23
WRKSRC= ${WRKDIR}/syncthing-cli-${GH_COMMIT}
PLIST_FILES= bin/syncthing-cli
STRIP= # stripping can break go binaries
post-patch:
@${MKDIR} ${WRKSRC}/src/github.com/syncthing
@${MKDIR} ${WRKSRC}/src/github.com/AudriusButkevicius
@${MKDIR} ${WRKSRC}/src/code.google.com/p
@${MKDIR} ${WRKSRC}/src/golang.org/x
@${MKDIR} ${WRKSRC}/src/github.com/bkaradzic
@${MV} ${WRKDIR}/AudriusButkevicius-cli-7f561c7 \
${WRKSRC}/src/github.com/AudriusButkevicius/cli
@${MV} ${WRKDIR}/syncthing-${SYNCTHING_VER}/Godeps/_workspace/src/golang.org/x/crypto \
${WRKSRC}/src/golang.org/x
@${MV} ${WRKDIR}/syncthing-${SYNCTHING_VER}/Godeps/_workspace/src/golang.org/x/text \
${WRKSRC}/src/golang.org/x
@${MV} ${WRKDIR}/syncthing-${SYNCTHING_VER}/Godeps/_workspace/src/github.com/bkaradzic/go-lz4 \
${WRKSRC}/src/github.com/bkaradzic
@${MV} ${WRKDIR}/syncthing-${SYNCTHING_VER}/Godeps/_workspace/src/github.com/calmh \
${WRKSRC}/src/github.com/calmh
@${MV} ${WRKDIR}/syncthing-${SYNCTHING_VER} \
${WRKSRC}/src/github.com/syncthing/syncthing
@${MV} ${WRKSRC}/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syncthing/protocol \
${WRKSRC}/src/github.com/syncthing/protocol
do-build:
@cd ${WRKSRC} ; ${SETENV} GOPATH=${WRKSRC} go build
@${MV} ${WRKSRC}/syncthing-cli-${GH_COMMIT} ${WRKSRC}/syncthing-cli
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/syncthing-cli ${STAGEDIR}${PREFIX}/bin/
.include <bsd.port.mk>