Fedora – How to install package from source on fedora in 2017

dnffedora

What is the most clean way to install third party tar.gz's to make it maintainable through dnf? I see no checkinstall in repos, but it should be a standard and fast way to do it. There is an article about creating RPMs, but it is way too complicated and doesn't cover just downloading and installing.

Best Answer

I think you will probably have the cleanest experience by not bothering to funnel the software through RPM; just build it locally into /opt or /usr/local.

But, if you really want it, there's FPM, which will create a quick and dirty package from just about anything. Find it at https://github.com/jordansissel/fpm.

Related Question