blob: 0cb483c333b3c26fa0072745c96632f06971646c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
PORTNAME= tcpblast
PORTVERSION= 1.1
PORTREVISION= 1
CATEGORIES= benchmarks net
MASTER_SITES= # none
DISTFILES= # none
MAINTAINER= ports@FreeBSD.org
COMMENT= Measures the throughput of a TCP connection
NO_WRKSUBDIR= yes
PLIST_FILES= bin/tcpblast
do-build:
${CC} ${CFLAGS} ${FILESDIR}/${PORTNAME}.c -o ${WRKDIR}/${PORTNAME}
do-install:
${INSTALL_PROGRAM} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>
|