topless reads various command output, displays it on the whole screen (like less), and periodically updates it like top. topless can be used with almost every sort of command, but is particularly useful when used with the command to monitor the system, such as ps, netstat or fstat.
23 lines
639 B
Makefile
23 lines
639 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2009/11/29 07:32:17 obache Exp $
|
|
#
|
|
|
|
DISTNAME= topless-1.52
|
|
CATEGORIES= misc sysutils
|
|
MASTER_SITES= http://people.freebsd.org/~daichi/src/
|
|
|
|
MAINTAINER= obache@NetBSD.org
|
|
HOMEPAGE= http://bloghome.lovepeers.org/daymemo2/files/2005/0613/topless.html
|
|
COMMENT= Display command output on the whole screen like ``top''
|
|
LICENSE= 2-clause-bsd
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_TOOLS+= perl
|
|
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/topless ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/topless.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|