So I have a Yocto build and I need to install this 3rd party RPM. I've created a recipe for it using the link to the source RPM. Problem is when implementing the do_install()
function.
I need to install it, and it's installed via rpm --install rpm_package
, and then I need to enable the service.
For the service I know I have to inherit systemd
in my recipe file, but for the installation I'm still confused.
The install
command only creates directories and copies files over.
Any help is appreciated.