37 lines
927 B
Bash
37 lines
927 B
Bash
# Template file for 'fio'
|
|
pkgname=fio
|
|
version=3.23
|
|
revision=1
|
|
wrksrc="${pkgname}-${pkgname}-${version}"
|
|
build_style=configure
|
|
make_build_args="T_TEST_PROGS="
|
|
make_install_args="mandir=/usr/share/man"
|
|
makedepends="zlib-devel libaio-devel"
|
|
depends="python3"
|
|
short_desc="Flexible I/O tester"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="GPL-2.0-only"
|
|
homepage="https://github.com/axboe/fio"
|
|
distfiles="https://github.com/axboe/${pkgname}/archive/${pkgname}-${version}.tar.gz"
|
|
checksum=a35e6c2eb69cde26d771175cb9a46719c964c7bbb700328da8649ab22a6b624c
|
|
python_version=3
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
i686*|x86_64*|ppc64*) makedepends+=" libnuma-devel"
|
|
esac
|
|
|
|
if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
|
|
makedepends+=" libatomic-devel"
|
|
export LIBS=-latomic
|
|
fi
|
|
|
|
do_configure() {
|
|
./configure --prefix=/usr --extra-cflags="$CFLAGS" --disable-native
|
|
}
|
|
|
|
post_install() {
|
|
vdoc HOWTO
|
|
for f in examples/*; do
|
|
vsconf "$f"
|
|
done
|
|
}
|