kumquat-buildroot/package/iozone/iozone.mk
Gilles Talis 57008d384b package/iozone: bump to version 3.506
- Upstream archive moved back to tar from tgz
- For change log, see end of file:
https://www.iozone.org/src/current/Changes.txt

Signed-off-by: Gilles Talis <gilles.talis@gmail.com>
Reviewed-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2024-03-03 17:42:37 +01:00

32 lines
907 B
Makefile

################################################################################
#
# iozone
#
################################################################################
IOZONE_VERSION = 3.506
IOZONE_SOURCE = iozone$(subst .,_,$(IOZONE_VERSION)).tar
IOZONE_SITE = http://www.iozone.org/src/current
IOZONE_LICENSE = IOzone license (NO DERIVED WORKS ALLOWED)
IOZONE_LICENSE_FILES = docs/License.txt
# AIO support not available on uClibc, use the linux (non-aio) target.
ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y)
IOZONE_TARGET = linux-noaio
else
IOZONE_TARGET = linux
endif
define IOZONE_BUILD_CMDS
$(MAKE) $(TARGET_CONFIGURE_OPTS) $(IOZONE_TARGET) -C $(@D)/src/current
endef
define IOZONE_INSTALL_TARGET_CMDS
$(INSTALL) -D -m 755 $(@D)/src/current/iozone \
$(TARGET_DIR)/usr/bin/iozone
$(INSTALL) -D -m 755 $(@D)/src/current/fileop \
$(TARGET_DIR)/usr/bin/fileop
endef
$(eval $(generic-package))