freebsd-ports/finance/fixc/Makefile
Mathieu Arnold f29a218fcd Replace most occurences of github.com in MASTER_SITES with USE_GITHUB usage.
With hat:	portmgr
Sponsored by:	Absolight
2015-05-18 17:07:45 +00:00

24 lines
462 B
Makefile

# $FreeBSD$
PORTNAME= fixc
PORTVERSION= 1.0
DISTVERSIONPREFIX= v
CATEGORIES= finance
MAINTAINER= blttll@gmail.com
COMMENT= Simple Financial Information eXchange (FIX) protocol console client
BUILD_DEPENDS= ${LOCALBASE}/bin/go:${PORTSDIR}/lang/go
PLIST_FILES= bin/fixc
USE_GITHUB= yes
GH_ACCOUNT= blttll
do-build:
cd ${WRKSRC} && \
go build -o fixc main.go
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/fixc ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>