mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
c0e21c588c
DISTFILES and PATCHFILES are empty - Define LICENSE (BSD2CLAUSE) - Convert 42-line pkg-descr into README file, fix a typo and give it better formatting
31 lines
593 B
Makefile
31 lines
593 B
Makefile
# Created by: David O'Brien (obrien@FreeBSD.org)
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= raidtest
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= benchmarks
|
|
MASTER_SITES= # none
|
|
DISTFILES= # none
|
|
|
|
MAINTAINER= pjd@FreeBSD.org
|
|
COMMENT= Test performance of storage devices
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
NO_WRKSUBDIR= yes
|
|
USES= uidfix
|
|
PLIST_FILES= bin/raidtest
|
|
PORTDOCS= README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKSRC}
|
|
${LN} -sf ${FILESDIR}/${PORTNAME}.c ${FILESDIR}/Makefile ${WRKSRC}
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${FILESDIR}/README ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|