080901b39f
memtest is a utility for testing the memory subsystem in a computer to determine if it is faulty. The original source was by Simon Kirby <sim@stormix.com>. I have by this time completely rewritten the original source, and added many additional tests to help catch borderline memory. I also rewrote the original tests (which catch mainly memory bits which are stuck permanently high or low) so that they run approximately an order of magnitude faster.
20 lines
531 B
Makefile
20 lines
531 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2003/07/19 02:09:40 poppnk Exp $
|
|
#
|
|
|
|
DISTNAME= memtester-2.93.1
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.qcc.ca/~charlesc/software/memtester/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pancake@phreaker.net
|
|
HOMEPAGE= http://www.qcc.ca/~charlesc/software/memtester/
|
|
COMMENT= Utility for testing the memory subsystem
|
|
|
|
USE_GMAKE= yes
|
|
USE_BUILDLINK2= yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/memtest ${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/memtest.1 ${PREFIX}/man/man1/
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|