freebsd-ports/benchmarks/pipebench/Makefile

26 lines
594 B
Makefile
Raw Normal View History

# Created by: mich@freebsdcluster.org
# $FreeBSD$
PORTNAME= pipebench
PORTVERSION= 0.40
2003-01-18 04:17:18 +01:00
CATEGORIES= benchmarks
2015-04-07 12:12:08 +02:00
MASTER_SITES= http://www.habets.pp.se/synscan/files/
MAINTAINER= mich@FreeBSD.org
2003-02-21 12:08:38 +01:00
COMMENT= Pipebench shows current throughput/amount of data through a pipe
2014-01-05 02:05:11 +01:00
PLIST_FILES= bin/pipebench \
man/man1/pipebench.1.gz
CFLAGS+= -w -pedantic
do-build:
cd ${WRKSRC} && \
${CC} ${CFLAGS} -o ${PORTNAME} ${PORTNAME}.c
do-install:
2014-01-05 02:05:11 +01:00
${INSTALL_PROGRAM} ${WRKSRC}/pipebench ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/pipebench.1 ${STAGEDIR}${PREFIX}/man/man1
.include <bsd.port.mk>