The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / fio / fio.mk
1 ################################################################################
2 #
3 # fio
4 #
5 ################################################################################
6
7 FIO_VERSION = fio-2.1.4
8 FIO_SITE = git://git.kernel.dk/fio.git
9 FIO_LICENSE = GPLv2 + special obligations
10 FIO_LICENSE_FILES = LICENSE
11
12 define FIO_CONFIGURE_CMDS
13         (cd $(@D); ./configure --cc="$(TARGET_CC)" --extra-cflags="$(TARGET_CFLAGS)")
14 endef
15
16 define FIO_BUILD_CMDS
17         $(MAKE) -C $(@D)
18 endef
19
20 define FIO_INSTALL_TARGET_CMDS
21         $(INSTALL) -D $(@D)/fio $(TARGET_DIR)/usr/bin/fio
22 endef
23
24 $(eval $(generic-package))