libgpiod: split recipe into .inc and .bb files

The build works the same for v0.x and v1.x series - leave only the
hashes in the .bb file and put everything else into .inc.

Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
Bartosz Golaszewski
2018-04-17 16:20:18 +02:00
committed by Armin Kuster
parent 331e3d406e
commit 266ccace9c
2 changed files with 22 additions and 21 deletions
@@ -0,0 +1,21 @@
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
# enable tools
PACKAGECONFIG ?= "tools"
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}"
@@ -1,24 +1,4 @@
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"
require libgpiod.inc
SRC_URI[md5sum] = "9c1966bea7dffd59bd099a8b2930e2ea"
SRC_URI[sha256sum] = "50c7862428ca90b58672e2475aea66d33a6fc86c6bab1928c0660f3aedf44a37"
inherit autotools pkgconfig
# enable tools
PACKAGECONFIG ?= "tools"
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}"