4022f5fe44
Switch to an active fork: "The original stress went unmaintained; the source of the last version, 1.0.4, was imported from Debian. After, patches from Debian and other changes were applied to create the 1.0.5 release. The details of each release are registered in the ChangeLog file. Now, stress is maintained by volunteers under Resurrecting Open Source Projects." https://github.com/resurrecting-open-source-projects/stress/blob/1.0.5/ChangeLog Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
28 lines
880 B
Makefile
28 lines
880 B
Makefile
################################################################################
|
|
#
|
|
# stress
|
|
#
|
|
################################################################################
|
|
|
|
STRESS_VERSION = 1.0.5
|
|
STRESS_SITE = $(call github,resurrecting-open-source-projects,stress,$(STRESS_VERSION))
|
|
STRESS_LICENSE = GPL-2.0+
|
|
STRESS_LICENSE_FILES = COPYING
|
|
# From git
|
|
STRESS_AUTORECONF = YES
|
|
|
|
# Stress is linked statically if the --enable-static is specified.
|
|
# However, this option is always specified in the global
|
|
# SHARED_STATIC_LIBS_OPTS to tell packages to build static libraries,
|
|
# if supported.
|
|
#
|
|
# If the BR2_STATIC_LIBS is not defined, we have to specify
|
|
# --disable-static explicitly to get stress linked dynamically.
|
|
#
|
|
# Also, disable documentation by undefining makeinfo
|
|
STRESS_CONF_OPTS = \
|
|
$(if $(BR2_STATIC_LIBS),,--disable-static) \
|
|
MAKEINFO=:
|
|
|
|
$(eval $(autotools-package))
|