mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-02 06:03:50 +00:00
a09dede5cd
Changes: Avoid using undefined behavior for int decrement to insure that forever really does mean forever. fix signed/unsigned errors PR: ports/164615 Submitted by: Sterling Camden <sterling@camdensoftware.com> (maintainer)
28 lines
549 B
Makefile
28 lines
549 B
Makefile
# New ports collection makefile for: pcpustat
|
|
# Date created: 13 July 2010
|
|
# Whom: sterling
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pcpustat
|
|
PORTVERSION= 1.6
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://chipstips.com/download/
|
|
|
|
MAINTAINER= sterling@camdensoftware.com
|
|
COMMENT= Per-CPU usage statistics
|
|
|
|
LICENSE= OWL
|
|
|
|
MAN1= pcpustat.1
|
|
|
|
USE_BZIP2= yes
|
|
PLIST_FILES= bin/pcpustat
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/man/man1/${PORTNAME}.1 ${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|