Install tarred and zipped source as a Debian package
- Problem
- Using the command
sudo make installis not too hard, but it does produce one problem: uninstallation. Packages are a much better distribution method, but many authors only distribute make-able source archives instead of .deb or .rpm files. - Solution
-
Use the “checkinstall” package to package up the installation process and allow easy uninstallation. (If you don’t have checkinstall, get it now, )
- Extract source:
tar jxvf gnome-schedule-0.9.0.tar.bz2 - Go into created folder:
cd gnome-schedule-0.9.0 - Get ready for installation:
./configure - Compile code:
make - Install:
checkinstall --default(This is instead ofandmake check)sudo make install - The program is now installed, and there is a nice little .deb file in the current directory.
- Extract source:
- Notes
- It would be nice to have a GUI feature which would allow instant installation of source packages, automating the above steps.
- Resources
No comments yet.![[feed]](http://www.brainonfire.net/blog/wp-content/themes/cleaner/images/feed-14sq.png)
Start the discussion