kumquat-buildroot/package/minisign/minisign.mk
Fabrice Fontaine ea425bf724 package/minisign: do not strip
Set CMAKE_STRIP to an empty value to avoid the following build failure
with BR2_BINFMT_FLAT raised since the addition of the package in commit
d90ac63d9b:

/home/buildroot/instance-0/output-1/host/bin/m68k-linux-strip: /home/buildroot/instance-0/output-1/build/minisign-0.11/minisign: file format not recognized

Fixes: d90ac63d9b
 - http://autobuild.buildroot.org/results/9cc9fd17c7eb4a741c08f27f69764df4a26295fa

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
(cherry picked from commit d96b3c331c)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2024-06-08 15:54:32 +02:00

21 lines
585 B
Makefile

################################################################################
#
# minisign
#
################################################################################
MINISIGN_VERSION = 0.11
MINISIGN_SITE = $(call github,jedisct1,minisign,$(MINISIGN_VERSION))
MINISIGN_LICENSE = ISC
MINISIGN_LICENSE_FILES = LICENSE
MINISIGN_DEPENDENCIES = libsodium
HOST_MINISIGN_DEPENDENCIES = host-libsodium
MINISIGN_CONF_OPTS = -DCMAKE_STRIP=""
ifeq ($(BR2_STATIC_LIBS),y)
MINISIGN_CONF_OPTS += -DBUILD_STATIC_EXECUTABLES=1
endif
$(eval $(cmake-package))
$(eval $(host-cmake-package))