Site icon Dipin Krishna

Create a .deb package from source files

If your build from source is successful, you can make a Debian (Ubuntu) package (.deb) for future use:

sudo apt-get install checkinstall
cd /path/to/extracted/package
./configure
sudo make
sudo checkinstall
sudo dpkg -i packagename.deb

Note: These are basic instructions that may not always work. Some packages require additional dependencies and optional parameters to be specified in order to build them successfully. Also see these Ubuntu wiki instructions

Exit mobile version