mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-04-20 11:38:34 +00:00
If we move the packageconfig settings from the shared inc file into the individual version recipes, we can enable the cxx bindings by default for the newer version of libgpiod. Signed-off-by: James Feist <james.feist@linux.intel.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
19 lines
609 B
PHP
19 lines
609 B
PHP
SUMMARY = "C library and tools for interacting with the linux GPIO character device"
|
|
|
|
LICENSE = "LGPLv2.1+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=2caced0b25dfefd4c601d92bd15116de"
|
|
|
|
SRC_URI = "https://www.kernel.org/pub/software/libs/libgpiod/${BP}.tar.xz"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
PACKAGECONFIG[tests] = "--enable-tests,--disable-tests,kmod udev"
|
|
PACKAGECONFIG[tools] = "--enable-tools,--disable-tools,"
|
|
|
|
PACKAGES =+ " ${PN}-tools"
|
|
|
|
FILES_${PN}-tools = "${bindir}/*"
|
|
|
|
RRECOMMENDS_TOOLS = "${@bb.utils.contains('PACKAGECONFIG', 'tools', '${PN}-tools', '',d)}"
|
|
RRECOMMENDS_${PN} += "${RRECOMMENDS_TOOLS}"
|