mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-07 06:40:06 +00:00
54e279cd72
Ports: benchmarks/hey benchmarks/vegeta databases/influxdb devel/arduino-builder devel/arduinoOTA devel/awless devel/git-codereview devel/git-town devel/gitlab-runner devel/grv devel/hub devel/jfrog-cli editors/micro finance/fixc misc/exercism net-mgmt/intel-snap net-mgmt/kapacitor net-mgmt/telegraf net/goreplay net/syncthing net/syncthing-cli net/syncthing-discosrv net/syncthing-inotify print/cups-connector security/sops security/vault sysutils/amazon-ssm-agent sysutils/circonus-agent sysutils/consul sysutils/consul_exporter sysutils/envconsul sysutils/serf textproc/consul-template textproc/spiff www/gobuffalo www/grafana2 www/grafana3 www/mattermost-server www/minio www/minio-client www/uchiwa Approved by: tcberner (mentor, implicit) Approved by: portmgr (port compliance, infrastructure)
25 lines
473 B
Makefile
25 lines
473 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:lang/go
|
|
|
|
PLIST_FILES= bin/fixc
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= blttll
|
|
|
|
do-build:
|
|
@cd ${WRKSRC} && \
|
|
${SETENV} ${MAKE_ENV} go build -o fixc main.go
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/fixc ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|