- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
37 lines
1.0 KiB
BlitzBasic
37 lines
1.0 KiB
BlitzBasic
SUMMARY = "Library for reading and writing Jcat files"
|
|
LICENSE = "LGPL-2.1-only"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=1803fa9c2c3ce8cb06b4861d75310742"
|
|
|
|
DEPENDS = "\
|
|
glib-2.0 \
|
|
json-glib \
|
|
"
|
|
|
|
SRC_URI = "\
|
|
git://github.com/hughsie/libjcat.git;branch=main;protocol=https \
|
|
file://run-ptest \
|
|
"
|
|
SRCREV = "869e7cf4511b81897512a3f0adb627218e618112"
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit gobject-introspection gtk-doc meson ptest-gnome vala lib_package
|
|
|
|
PACKAGECONFIG ??= "\
|
|
gpg \
|
|
pkcs7 \
|
|
${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)} \
|
|
"
|
|
PACKAGECONFIG[gpg] = "-Dgpg=true,-Dgpg=false,gpgme"
|
|
PACKAGECONFIG[pkcs7] = "-Dpkcs7=true,-Dpkcs7=false,gnutls gnutls-native"
|
|
PACKAGECONFIG[tests] = "-Dtests=true,-Dtests=false"
|
|
|
|
# manpage generation is broken because help2man needs to run the target binary on the host...
|
|
EXTRA_OEMESON = "-Dman=false"
|
|
GTKDOC_MESON_OPTION = "gtkdoc"
|
|
|
|
RDEPENDS:${PN}:class-target = "\
|
|
${@bb.utils.contains('PACKAGECONFIG', 'gpg', 'gnupg', '', d)} \
|
|
"
|
|
|
|
INSANE_SKIP:${PN}-ptest += "buildpaths"
|