1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00
freebsd-ports/benchmarks/pipebench/Makefile
2021-04-06 16:31:07 +02:00

25 lines
582 B
Makefile

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