mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
836ed9af4c
PR: 262978
26 lines
548 B
Makefile
26 lines
548 B
Makefile
PORTNAME= go-perf
|
|
PORTVERSION= ${MODVERSION:S/-/./g:R}
|
|
DISTVERSIONPREFIX= v
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= fuz@fuz.su
|
|
COMMENT= Go performance measurement, storage, and analysis tools
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= go:modules
|
|
MODVERSION= 0.0.0-20220325170245-3d08e7980857
|
|
GO_MODULE= golang.org/x/perf@v${MODVERSION}
|
|
|
|
GO_TARGET= ./cmd/benchsave \
|
|
./cmd/benchseries \
|
|
./cmd/benchstat \
|
|
./analysis/localperf \
|
|
./storage/localperfdata
|
|
|
|
PLIST_FILES= ${GO_TARGET:T:S,^,bin/,}
|
|
|
|
.include <bsd.port.mk>
|