70db731a79
Disable man pages to avoid the following build failure if a non-working
a2x is found on the system raised since bump to version 11 in commit
b72b849ad5
:
/usr/bin/a2x -f manpage -D /nvmedata/autobuild/instance-23/output-1/build/jose-11/build /nvmedata/autobuild/instance-23/output-1/build/jose-11/doc/man/jose.1.adoc
/nvmedata/autobuild/instance-23/output-1/host/bin/python3: Error while finding module specification for 'asciidoc.a2x' (ModuleNotFoundError: No module named 'asciidoc')
Fixes:
- http://autobuild.buildroot.org/results/ae69f7fd1258d99a5b08eeb8c67904be53eabf15
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
17 lines
514 B
Makefile
17 lines
514 B
Makefile
################################################################################
|
|
#
|
|
# jose
|
|
#
|
|
################################################################################
|
|
|
|
JOSE_VERSION = 11
|
|
JOSE_SOURCE = jose-$(JOSE_VERSION).tar.xz
|
|
JOSE_SITE = https://github.com/latchset/jose/releases/download/v$(JOSE_VERSION)
|
|
JOSE_LICENSE = Apache-2.0
|
|
JOSE_LICENSE_FILES = COPYING
|
|
JOSE_INSTALL_STAGING = YES
|
|
JOSE_DEPENDENCIES = host-pkgconf zlib jansson openssl
|
|
JOSE_CONF_OPTS = -Dskip_manpages=true
|
|
|
|
$(eval $(meson-package))
|