freebsd-ports/finance/ticker/Makefile
Robert Clausecker ac336b431d finance/ticker: update to 4.3.0
PR:	258510
2021-09-15 09:32:36 -07:00

74 lines
4 KiB
Makefile

PORTNAME= ticker
DISTVERSIONPREFIX= v
DISTVERSION= 4.3.0
CATEGORIES= finance
MAINTAINER= fuz@fuz.su
COMMENT= Terminal stock ticker with live updates and position tracking
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= go:modules
USE_GITHUB= yes
GH_ACCOUNT= achannarasappa
GH_TUPLE= acarl005:stripansi:5a71ef0e047d:acarl005_stripansi/vendor/github.com/acarl005/stripansi \
achannarasappa:term-grid:v0.2.4:achannarasappa_term_grid/vendor/github.com/achannarasappa/term-grid \
adrg:xdg:v0.3.0:adrg_xdg/vendor/github.com/adrg/xdg \
charmbracelet:bubbles:v0.8.0:charmbracelet_bubbles/vendor/github.com/charmbracelet/bubbles \
charmbracelet:bubbletea:v0.14.1:charmbracelet_bubbletea/vendor/github.com/charmbracelet/bubbletea \
containerd:console:v1.0.3:containerd_console/vendor/github.com/containerd/console \
fsnotify:fsnotify:v1.4.9:fsnotify_fsnotify/vendor/github.com/fsnotify/fsnotify \
go-ini:ini:v1.51.0:go_ini_ini/vendor/gopkg.in/ini.v1 \
go-resty:resty:v2.3.0:go_resty_resty_v2/vendor/github.com/go-resty/resty/v2 \
go-tomb:tomb:dd632973f1e7:go_tomb_tomb/vendor/gopkg.in/tomb.v1 \
go-yaml:yaml:v2.4.0:go_yaml_yaml/vendor/gopkg.in/yaml.v2 \
golang:net:c7110b5ffcbb:golang_net/vendor/golang.org/x/net \
golang:sys:d867a43fc93e:golang_sys/vendor/golang.org/x/sys \
golang:term:6886f2dfbf5b:golang_term/vendor/golang.org/x/term \
golang:text:v0.3.3:golang_text/vendor/golang.org/x/text \
hashicorp:hcl:v1.0.0:hashicorp_hcl/vendor/github.com/hashicorp/hcl \
inconshreveable:mousetrap:v1.0.0:inconshreveable_mousetrap/vendor/github.com/inconshreveable/mousetrap \
jarcoal:httpmock:v1.0.7:jarcoal_httpmock/vendor/github.com/jarcoal/httpmock \
lucasb-eyer:go-colorful:v1.2.0:lucasb_eyer_go_colorful/vendor/github.com/lucasb-eyer/go-colorful \
magiconair:properties:v1.8.1:magiconair_properties/vendor/github.com/magiconair/properties \
mattn:go-isatty:v0.0.13:mattn_go_isatty/vendor/github.com/mattn/go-isatty \
mattn:go-runewidth:v0.0.13:mattn_go_runewidth/vendor/github.com/mattn/go-runewidth \
mitchellh:go-homedir:v1.1.0:mitchellh_go_homedir/vendor/github.com/mitchellh/go-homedir \
mitchellh:mapstructure:v1.1.2:mitchellh_mapstructure/vendor/github.com/mitchellh/mapstructure \
muesli:reflow:v0.3.0:muesli_reflow/vendor/github.com/muesli/reflow \
muesli:termenv:v0.9.0:muesli_termenv/vendor/github.com/muesli/termenv \
nxadm:tail:v1.4.6:nxadm_tail/vendor/github.com/nxadm/tail \
onsi:ginkgo:v1.15.0:onsi_ginkgo/vendor/github.com/onsi/ginkgo \
onsi:gomega:v1.10.5:onsi_gomega/vendor/github.com/onsi/gomega \
pelletier:go-toml:v1.2.0:pelletier_go_toml/vendor/github.com/pelletier/go-toml \
protocolbuffers:protobuf-go:v1.25.0:protocolbuffers_protobuf_go/vendor/google.golang.org/protobuf \
rivo:uniseg:v0.2.0:rivo_uniseg/vendor/github.com/rivo/uniseg \
spf13:afero:v1.5.1:spf13_afero/vendor/github.com/spf13/afero \
spf13:cast:v1.3.0:spf13_cast/vendor/github.com/spf13/cast \
spf13:cobra:v1.1.1:spf13_cobra/vendor/github.com/spf13/cobra \
spf13:jwalterweatherman:v1.0.0:spf13_jwalterweatherman/vendor/github.com/spf13/jwalterweatherman \
spf13:pflag:v1.0.5:spf13_pflag/vendor/github.com/spf13/pflag \
spf13:viper:v1.7.0:spf13_viper/vendor/github.com/spf13/viper \
subosito:gotenv:v1.2.0:subosito_gotenv/vendor/github.com/subosito/gotenv \
xeipuuv:gojsonpointer:4e3ac2762d5f:xeipuuv_gojsonpointer/vendor/github.com/xeipuuv/gojsonpointer \
xeipuuv:gojsonreference:bd5ef7bd5415:xeipuuv_gojsonreference/vendor/github.com/xeipuuv/gojsonreference \
xeipuuv:gojsonschema:v1.2.0:xeipuuv_gojsonschema/vendor/github.com/xeipuuv/gojsonschema
GO_BUILDFLAGS= -ldflags="-X github.com/achannarasappa/ticker/cmd.Version=v${DISTVERSION}"
PLIST_FILES= bin/ticker
PORTDOCS= README.md \
docs/debug-guide.md \
docs/ticker-all-options.png \
docs/ticker-currency.png \
docs/ticker.gif
OPTIONS_DEFINE= DOCS
do-install-DOCS-on:
.for doc in ${PORTDOCS}
${MKDIR} ${STAGEDIR}${DOCSDIR}/`dirname ${doc}`
${INSTALL_MAN} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR}/`dirname ${doc}`/
.endfor
.include <bsd.port.mk>