I want to install the raspicam library in the yocto project, but i couldn't find the .bb file anywhere and write the content myself.
https://github.com/cedricve/raspicam
I want to create .bb file for the library in this repo. How can i write the contents of the bb file?
You can try with below
inherit pkgconfig cmake
RDEPENDS_${PN} = "
userland
"
DEPENDS = "
userland
"
SRCREV = "${AUTOREV}" SRCBRANCH = "master" SRC_URI = "git://github.com/cedricve/raspicam.git;protocol=https;branch=${SRCBRANCH} "
S = "${WORKDIR}/git"