How to create a Makefile's target that calls a specific yum install
:
yum install libarchive-devel.x86_64
but only if the desired package isn't yet installed. Maybe a yum list installed | grep libarchive
to check...
My goal is to call: sudo yum install libarchive-devel.x86_64
but only if the package isn't installed yet. A kind of Maven like in an abstract way.
Don't need any specific version of it. Only it to be x86_64.