fastfs turns on/off delayed I/O on a filesystem. It is intended for use with restore(8) to speed up full filesystem restores as much as 500%.
27 lines
633 B
Makefile
27 lines
633 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2004/01/21 05:03:18 grant Exp $
|
|
#
|
|
|
|
DISTNAME= fastfs.c
|
|
PKGNAME= fastfs-19940614
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.squirrel.com/squirrel/
|
|
EXTRACT_SUFX= # empty
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
COMMENT= Turn on/off delayed IO on a file system
|
|
|
|
WRKSRC= ${WRKDIR}/fastfs
|
|
NO_CONFIGURE= # defined
|
|
ONLY_FOR_PLATFORM= SunOS-*-*
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKSRC}
|
|
@${CP} ${DISTDIR}/${DISTNAME} ${WRKSRC}
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${CC} ${CFLAGS} ${DISTNAME} -o ${DISTNAME:S/.c//}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${DISTNAME:S/.c//} ${PREFIX}/sbin
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|