If you've been using Linux for a while, you've probably run across the need to install something from the source packages. Either the program you wanted wasn't available in the repositories, or you wanted a more recent version than what's shown in the repositories. Checkinstall is a program that will create Slackware, Debian, or RPM packages for you after you compile a program from source. For a typical install from source you run
./configure
make
sudo make install
make
sudo make install
With checkinstall you run
./configure
make
sudo checkinstall
make
sudo checkinstall
Checkinstall is available in the Ubuntu Universe repository. Make sure Universe is enabled in your package sources and then install it with Synaptic or from the terminal with
sudo apt-get install checkinstall
#
Thank you very much, for now and on i will use it everytime i need it 😉
Greetings from Mexico!!