mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-22 01:13:00 +02:00
Plain openssl is a meta-package, gencert requires libopenssl v3.x and later, and use pkg-config to detect its presence. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
23 lines
573 B
Makefile
23 lines
573 B
Makefile
################################################################################
|
|
#
|
|
# gencert
|
|
#
|
|
################################################################################
|
|
|
|
GENCERT_VERSION = 1.0
|
|
GENCERT_SITE_METHOD = local
|
|
GENCERT_SITE = $(BR2_EXTERNAL_INFIX_PATH)/src/gencert
|
|
GENCERT_LICENSE = ISC
|
|
GENCERT_LICENSE_FILES = LICENSE
|
|
GENCERT_REDISTRIBUTE = NO
|
|
GENCERT_DEPENDENCIES = host-pkgconf libopenssl
|
|
GENCERT_AUTORECONF = YES
|
|
|
|
define GENCERT_CONF_ENV
|
|
CFLAGS="$(INFIX_CFLAGS)"
|
|
endef
|
|
|
|
GENCERT_CONF_OPTS = --prefix= --disable-silent-rules
|
|
|
|
$(eval $(autotools-package))
|