d4819f19f1
Submitted by Sebastian Stark <seb@todesplanet.de>. pstree is a frontend for ps and displays the process listing in a tree.
27 lines
574 B
Makefile
27 lines
574 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2001/05/30 14:07:15 naddy Exp $
|
|
|
|
COMMENT= "list processes as a tree"
|
|
DISTNAME= pstree-2.16
|
|
CATEGORIES= sysutils
|
|
NEED_VERSION= 1.413
|
|
|
|
MAINTAINER= Sebastian Stark <seb@todesplanet.de>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://www.go.dlr.de/fresh/unix/src/misc/
|
|
|
|
WRKDIST= ${WRKDIR}
|
|
|
|
do-build:
|
|
cd ${WRKBUILD} && ${CC} ${CFLAGS} -o pstree pstree.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKBUILD}/pstree ${PREFIX}/bin/pstree
|
|
|
|
.include <bsd.port.mk>
|