1################################################################################ 2# 3# stress 4# 5################################################################################ 6 7STRESS_VERSION = 1.0.4 8STRESS_SITE = http://people.seas.harvard.edu/~apw/stress 9STRESS_LICENSE = GPL-2.0+ 10STRESS_LICENSE_FILES = COPYING 11 12# Stress is linked statically if the --enable-static is specified. 13# However, this option is always specified in the global 14# SHARED_STATIC_LIBS_OPTS to tell packages to build static libraries, 15# if supported. 16# 17# If the BR2_STATIC_LIBS is not defined, we have to specify 18# --disable-static explicitly to get stress linked dynamically. 19# 20# Also, disable documentation by undefining makeinfo 21STRESS_CONF_OPTS = \ 22 $(if $(BR2_STATIC_LIBS),,--disable-static) \ 23 MAKEINFO=: 24 25$(eval $(autotools-package)) 26