kumquat-buildroot/package/iozone/iozone.mk
Fabrice Fontaine 1e75050bbb package/iozone: update IOZONE_VERSION
Update IOZONE_VERSION to reflect what is used by
https://release-monitoring.org

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2021-08-17 09:20:10 +02:00

33 lines
957 B
Makefile

################################################################################
#
# iozone
#
################################################################################
IOZONE_VERSION = 3.490
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 details can be found at:
# http://www.iozone.org/docs/Iozone_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))