7007da438b
toprump is a modified version of the top command included with OpenBSD. Added features include an ASCII CPU utilisation graph; the ability to highlight (make bold) a users' processes; and an inverse username filter. Plus other modifications.
28 lines
570 B
Makefile
28 lines
570 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2010/01/11 11:48:23 landry Exp $
|
|
|
|
COMMENT= modified OpenBSD top command
|
|
|
|
DISTNAME= toprump-0.5.0
|
|
CATEGORIES= sysutils
|
|
|
|
HOMEPAGE= http://cyodesigns.com/toprump/
|
|
|
|
MAINTAINER= Mark Lumsden <mark@cyodesigns.com>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
NO_REGRESS= Yes
|
|
WANTLIB= c curses
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/toprump ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/toprump.cat1 ${PREFIX}/man/cat1/toprump.0
|
|
|
|
.include <bsd.port.mk>
|