diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-10-09 23:38:43 +0000 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-10-09 23:38:43 +0000 |
commit | ea4d96f1017ec03f0730334b49d35b4b6d61d338 (patch) | |
tree | 63bcd8924e491e855ce2bee760c02129539c54e2 /audio/murmur-cli/Makefile | |
parent | lang/php74: Update from 7.4.10 to 7.4.11 (diff) |
murmur-cli provides an interface to a grpc-enabled murmur server.
WWW: https://github.com/layeh/murmur-cli
Notes
Notes:
svn path=/head/; revision=551841
Diffstat (limited to 'audio/murmur-cli/Makefile')
-rw-r--r-- | audio/murmur-cli/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/audio/murmur-cli/Makefile b/audio/murmur-cli/Makefile new file mode 100644 index 000000000000..6cbe56112b53 --- /dev/null +++ b/audio/murmur-cli/Makefile @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= murmur-cli +PORTVERSION= 0.0.0.20200528 +CATEGORIES= audio + +MAINTAINER= feld@FreeBSD.org +COMMENT= GRPC client for Murmur server + +LICENSE= MPL20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= go:modules + +#GO_PKGNAME= github.com/${GH_ACCOUNT}/${GH_PROJECT} +#GO_TARGET= ${GO_PKGNAME}/cmd/${GH_PROJECT} + +PLIST_FILES= bin/murmur-cli + +GH_ACCOUNT= layeh +GH_TAGNAME= 8f83169 +USE_GITHUB= yes +GH_TUPLE= \ + golang:net:e7e4b65ae663:golang_net/vendor/golang.org/x/net \ + golang:protobuf:v1.3.2:golang_protobuf/vendor/github.com/golang/protobuf \ + golang:sys:d0b11bdaac8a:golang_sys/vendor/golang.org/x/sys \ + golang:text:v0.3.0:golang_text/vendor/golang.org/x/text \ + google:go-genproto:24fa4b261c55:google_go_genproto/vendor/google.golang.org/genproto \ + grpc:grpc-go:v1.25.1:grpc_grpc_go/vendor/google.golang.org/grpc + +.include <bsd.port.mk> |