blob: c40120139fd9b15c525fcc3ce71aae61bf8d9899 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Created by: mr
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>
|