freebsd-ports/benchmarks/stream/Makefile
Wesley Shields dcf084453f - Real version number is 5.8
- Pass maintainership to submitter
- Fix conflict with ImageMagick (switch to bin/stream_bench)
- Switch to using WRKSRC instead of BUILD_WRKSRC

PR:		ports/137125
Submitted by:	Alexey Shuvaev <shuvaev@physik.uni-wuerzburg.de>
2009-02-19 17:39:02 +00:00

35 lines
827 B
Makefile

# New ports collection makefile for: stream
# Date created: 10 May 2001
# Whom: Scott Flatman <sf@dsinw.com>
#
# $FreeBSD$
PORTNAME= stream
PORTVERSION= 5.8
CATEGORIES= benchmarks
MASTER_SITES= http://www.cs.virginia.edu/stream/FTP/Code/
DISTFILES= stream.c
DIST_SUBDIR= ${PORTNAME}-1.0
MAINTAINER= shuvaev@physik.uni-wuerzburg.de
COMMENT= Synthetic benchmark program that measures sustainable memory bandwidth
PLIST_FILES= bin/stream_bench
PORTDOCS= stream.c
do-extract:
@${MKDIR} ${WRKSRC}
@${CP} ${_DISTDIR}/stream.c ${WRKSRC}
do-build:
(cd ${WRKSRC} ; ${CC} ${CFLAGS} -o stream_bench stream.c -lm)
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/stream_bench ${PREFIX}/bin
. if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${DOCSDIR}
. endif
.include <bsd.port.mk>