I have some simple python3 scripts that I packaged in such a way that upon pip install .
within the repository one can use the scripts within the bin
folder as a CLI e.g.
$ gpsinflux # execute the script as cli
source
gpsinflux repository.
Workflow
I used
devtool add gpsinflux url_of_repo
I already managed to add
influxdb-python
as a recipe based on my findings in my previous SE Query regarding python application on yoctoEdit the recipe to add
RDEPENDS_PN
However do I need to mention within the recipe that I want the script in the bin
folder from my repository to be installed in say, /usr/bin
folder or will the recipe do that automatically?