c8040c59d7
The function of disk-filltest is simple: * Write files random-######## to the current directory until the disk is full * Read the files again and verify the pseudo-random sequence written * Any write or read error will be reported, either by the operating system or by checking the pseudo-random sequence * Optionally, delete the random files after a successful run
21 lines
639 B
Makefile
21 lines
639 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2014/05/31 22:04:35 abs Exp $
|
|
|
|
DISTNAME= disk-filltest-0.7.1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://panthema.net/2013/disk-filltest/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://panthema.net/2013/disk-filltest/
|
|
COMMENT= Detect Bad Disks by Filling with Random Data
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
INSTALLATION_DIRS= bin share/doc/disk-filltest
|
|
|
|
BUILD_TARGET= disk-filltest
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/disk-filltest ${DESTDIR}${PREFIX}/bin/disk-filltest
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${PREFIX}/share/doc/disk-filltest/README
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|