mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-05 11:35:01 +00:00
48d9e5ceb9
Processor Counter Monitor (PCM) is an application programming interface (API) and a set of tools based on the API to monitor performance and energy metrics of Intel(r) Core(tm), Xeon(r) and Atom(tm) processors. This requires the 'cpuctl' module to be loaded. WWW: https://github.com/opcm/pcm PR: 227317 Submitted by: Vinícius Zavam <egypcio@googlemail.com> Differential Revision: https://reviews.freebsd.org/D14986
29 lines
485 B
Makefile
29 lines
485 B
Makefile
# Created by: Adrian Chadd
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= intel-pcm
|
|
PORTVERSION= 201710
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= imp@FreeBSD.org
|
|
COMMENT= Process Count Monitor (PCM) for Intel processors
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
|
|
USES= gmake
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= opcm
|
|
GH_PROJECT= pcm
|
|
GH_TAGNAME= 201710
|
|
|
|
CONFLICTS_INSTALL= intel-pcm-devel
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/*.x ${STAGEDIR}${PREFIX}/sbin
|
|
|
|
.include <bsd.port.mk>
|