Created
October 24, 2018 15:13
-
-
Save parthitce/a0ecc6ff869b62b3de84ce93386f89f0 to your computer and use it in GitHub Desktop.
meta-babelouest : Yocto recipes for babelouest softwares
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# We have a conf and classes directory, add to BBPATH | |
BBPATH .= ":${LAYERDIR}" | |
# We have a recipes-* directories, add to BBFILES | |
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ | |
${LAYERDIR}/recipes-*/*/*.bbappend" | |
BBFILE_COLLECTIONS += "babelouest" | |
BBFILE_PATTERN_babelouest = "^${LAYERDIR}/" | |
BBFILE_PRIORITY_babelouest = "6" | |
# Set a variable to get to the top of the meta-layer location | |
HAB_BASE := '${LAYERDIR}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DESCRIPTION = "Potluck with different functions for different purposes that can be shared among C programs" | |
HOMEPAGE = "https://github.com/babelouest/orcania" | |
LICENSE = "LGPL-2.1" | |
LIC_FILES_CHKSUM = "file://LICENSE;md5=fc178bcd425090939a8b634d1d6a9594" | |
inherit cmake pkgconfig | |
SRC_URI = "git://github.com/babelouest/orcania" | |
SRCREV = "${AUTOREV}" | |
S = "${WORKDIR}/git" | |
DEPENDS = "jansson" | |
RDEPENDS_${PN} = "jansson" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DESCRIPTION = "Web Framework to build REST APIs, Webservices or any HTTP endpoint in C language. Can stream large amount of data, integrate JSON data with Jansson, and create websocket services" | |
HOMEPAGE = "https://babelouest.github.io/ulfius/" | |
LICENSE = "LGPL-2.1" | |
LIC_FILES_CHKSUM = "file://LICENSE;md5=40d2542b8c43a3ec2b7f5da31a697b88" | |
inherit cmake pkgconfig | |
SRC_URI = "git://github.com/babelouest/ulfius" | |
SRCREV = "${AUTOREV}" | |
S = "${WORKDIR}/git" | |
DEPENDS = "gnutls jansson libmicrohttpd" | |
RDEPENDS_${PN} = "gnutls jansson libmicrohttpd" | |
EXTRA_OECMAKE += "-DWITH_JOURNALD=off" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DESCRIPTION = "Logging library for C applications" | |
HOMEPAGE = "https://github.com/babelouest/yder" | |
LICENSE = "LGPL-2.1" | |
LIC_FILES_CHKSUM = "file://LICENSE;md5=40d2542b8c43a3ec2b7f5da31a697b88" | |
inherit cmake pkgconfig | |
SRC_URI = "git://github.com/babelouest/yder" | |
SRCREV = "${AUTOREV}" | |
S = "${WORKDIR}/git" | |
DEPENDS = "jansson orcania" | |
RDEPENDS_${PN} = "jansson orcania" | |
EXTRA_OECMAKE += "-DWITH_JOURNALD=off" |
@elockman If you have included the image recipe names in the IMAGE_INSTALL, then the binaries and libraries should be in the final root filesystem image.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've built linux with these recipes, but I'm not finding the installed packages. Where should I find them in the embedded linux image?