38 lines
701 B
Makefile
38 lines
701 B
Makefile
|
COMMENT= flexible I/O tester
|
||
|
|
||
|
GH_ACCOUNT= axboe
|
||
|
GH_PROJECT= fio
|
||
|
GH_TAGNAME= fio-3.33
|
||
|
PKGNAME= ${GH_TAGNAME}
|
||
|
|
||
|
CATEGORIES= benchmarks
|
||
|
|
||
|
HOMEPAGE= https://fio.readthedocs.io/
|
||
|
|
||
|
MAINTAINER= Kurt Miller <kurt@openbsd.org>
|
||
|
|
||
|
# GPLv2 + MORAL-LICENSE which encourages users to mention fio and which
|
||
|
# version was used when publishing results and that features or bug fixes
|
||
|
# be sent upstream to fio
|
||
|
PERMIT_PACKAGE= Yes
|
||
|
|
||
|
COMPILER= base-clang ports-gcc
|
||
|
COMPILER_LANGS= c
|
||
|
|
||
|
WANTLIB= c m nfs pthread z
|
||
|
|
||
|
USE_GMAKE= Yes
|
||
|
SEPARATE_BUILD= Yes
|
||
|
|
||
|
CONFIGURE_STYLE=simple
|
||
|
|
||
|
MAKE_FLAGS= V=1 \
|
||
|
EXTFLAGS="${CFLAGS}"
|
||
|
|
||
|
CONFIGURE_ARGS= --disable-optimizations \
|
||
|
--disable-native
|
||
|
|
||
|
LIB_DEPENDS= devel/libnfs
|
||
|
|
||
|
.include <bsd.port.mk>
|