kumquat-buildroot/package/dieharder/dieharder.mk
Fabrice Fontaine 16b27f7cdb package/dieharder: bump to version 3.31.1.4
- Switch to the maintenance "upstream" repo which regroup updates made
  for the Debian package
- Drop all patches (already in version)
- Drop DIEHARDER_M4_CLEAN which is not needed since
  c875e5d819
- -fcommon is not needed since
  8feba3cc2b

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-12-28 21:01:30 +01:00

26 lines
706 B
Makefile

################################################################################
#
# dieharder
#
################################################################################
DIEHARDER_VERSION = 3.31.1.4
DIEHARDER_SITE = $(call github,eddelbuettel,dieharder,$(DIEHARDER_VERSION))
DIEHARDER_LICENSE = GPL-2.0 with beverage clause
DIEHARDER_LICENSE_FILES = COPYING
DIEHARDER_DEPENDENCIES = gsl
# configure retrieved from git is outdated
DIEHARDER_AUTORECONF = YES
# fix endianness detection
ifeq ($(BR2_ENDIAN),"BIG")
DIEHARDER_CONF_ENV = ac_cv_c_endian=big
else
DIEHARDER_CONF_ENV = ac_cv_c_endian=little
endif
# parallel build fail, disable it
DIEHARDER_MAKE = $(MAKE1)
$(eval $(autotools-package))