void-packages/srcpkgs/fio/template
2018-07-24 12:12:06 +02:00

31 lines
771 B
Bash

# Template file for 'fio'
pkgname=fio
version=3.8
revision=1
wrksrc="${pkgname}-${pkgname}-${version}"
build_style=configure
make_install_args="mandir=/usr/share/man"
makedepends="zlib-devel libaio-devel"
depends="python"
short_desc="Flexible I/O tester"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="GPL-2"
homepage="https://github.com/axboe/fio"
distfiles="https://github.com/axboe/${pkgname}/archive/${pkgname}-${version}.tar.gz"
checksum=3eccc9eb2ccf9d910ab391c5d639565e0f6bb4050620d161f26c36c6ff83454f
case "$XBPS_TARGET_MACHINE" in
i686*|x86_64*) makedepends+=" libnuma-devel"
esac
do_configure() {
./configure --prefix=/usr --extra-cflags="$CFLAGS"
}
post_install() {
vlicense MORAL-LICENSE
vdoc HOWTO
for f in examples/*; do
vsconf "$f"
done
}