2015-09-09 11:53:47 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# stress-ng
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2016-09-07 22:21:24 +02:00
|
|
|
STRESS_NG_VERSION = 0.06.15
|
2015-09-28 18:10:31 +02:00
|
|
|
STRESS_NG_SITE = http://kernel.ubuntu.com/~cking/tarballs/stress-ng
|
2015-09-09 11:53:47 +02:00
|
|
|
STRESS_NG_LICENSE = GPLv2+
|
|
|
|
STRESS_NG_LICENSE_FILES = COPYING
|
|
|
|
|
|
|
|
STRESS_NG_DEPENDENCIES = attr keyutils
|
|
|
|
|
|
|
|
define STRESS_NG_BUILD_CMDS
|
|
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
|
|
|
|
endef
|
|
|
|
|
2016-09-07 22:21:23 +02:00
|
|
|
# Don't use make install otherwise stress-ng will be rebuild without
|
|
|
|
# required link libraries if any. Furthermore, using INSTALL allow to
|
|
|
|
# set the file permission correcly on the target.
|
2015-09-09 11:53:47 +02:00
|
|
|
define STRESS_NG_INSTALL_TARGET_CMDS
|
2016-09-07 22:21:23 +02:00
|
|
|
$(INSTALL) -m 0755 -D $(@D)/stress-ng $(TARGET_DIR)/usr/bin/stress-ng
|
2015-09-09 11:53:47 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(generic-package))
|