blob: 06b8c9a17d42ca9240a84d0ac158b5acb78c6fcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $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>
|