Date: Wed, 22 Aug 2018 19:42:48 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r477816 - in head/finance: . cointop Message-ID: <201808221942.w7MJgmqX069332@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: swills Date: Wed Aug 22 19:42:48 2018 New Revision: 477816 URL: https://svnweb.freebsd.org/changeset/ports/477816 Log: finance/cointop: terminal UI showing cryptocurrency values in realtime PR: 229766 Submitted by: Nathan <ndowens@yahoo.com> Added: head/finance/cointop/ head/finance/cointop/Makefile (contents, props changed) head/finance/cointop/distinfo (contents, props changed) head/finance/cointop/pkg-descr (contents, props changed) Modified: head/finance/Makefile (contents, props changed) Modified: head/finance/Makefile ============================================================================== --- head/finance/Makefile Wed Aug 22 19:41:49 2018 (r477815) +++ head/finance/Makefile Wed Aug 22 19:42:48 2018 (r477816) @@ -27,6 +27,7 @@ SUBDIR += beanie SUBDIR += bitcoin-armory SUBDIR += cbb + SUBDIR += cointop SUBDIR += electrum SUBDIR += expense SUBDIR += fixc Added: head/finance/cointop/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/cointop/Makefile Wed Aug 22 19:42:48 2018 (r477816) @@ -0,0 +1,32 @@ +# $FreeBSD$ + +PORTNAME= cointop +PORTVERSION= 1.0.6 +CATEGORIES= finance + +MAINTAINER= ndowens.fbsd@yandex.com +COMMENT= Light cryptocurrency coin stats + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +USES= go + +USE_GITHUB= yes +GH_ACCOUNT= miguelmota +GH_PROJECT= cointop + +PLIST_FILES= bin/cointop + +do-build: + @${MKDIR} ${WRKSRC}/github.com/${GH_ACCOUNT} + @${RLN} ${WRKSRC} ${WRKSRC}/github.com/${GH_ACCOUNT}/${PORTNAME} + @${RLN} ${WRKSRC} ${WRKSRC}/src + cd ${WRKSRC} && \ + ${SETENV} ${MAKE_ENV} ${GO_ENV} CGO_ENABLED=0 GOPATH=${WRKSRC} \ + ${GO_CMD} build -ldflags "-X main.Version=${DISTVERSION}" -o bin/${PORTNAME} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ + +.include <bsd.port.mk> Added: head/finance/cointop/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/cointop/distinfo Wed Aug 22 19:42:48 2018 (r477816) @@ -0,0 +1,3 @@ +TIMESTAMP = 1531543729 +SHA256 (miguelmota-cointop-1.0.6_GH0.tar.gz) = 6188f21e7fcdfe686324a30a5ccc89a684e2a9acd81f2b042309ec0b28c26272 +SIZE (miguelmota-cointop-1.0.6_GH0.tar.gz) = 3988031 Added: head/finance/cointop/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/cointop/pkg-descr Wed Aug 22 19:42:48 2018 (r477816) @@ -0,0 +1,5 @@ +WWW: https://github.com/miguelmota/cointop + +Fast and lightweight terminal based UI application +for tracking and monitoring cryptocurrency coins +in real-time; inspired by htop with vim-inspired keys
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808221942.w7MJgmqX069332>