I think almost everyone understands the benefits of package managers over installation with ./configure && make && make install.
Using the example of the recently appeared patch for Pidgin, I want to show how easy it is to rebuild packages in deb-based distributions.
sudo apt-get install devscripts build-essential fakeroot
apt-get source libpurple0
apt-get source pidgin
wget http://launchpadlibrarian.net/15741199/pidgin-2.4.2-icq.patch
cd pidgin-2.4.1
patch -p0 < ../pidgin-2.4.2-icq.patch
sudo apt-get build-dep libpurple0
debuild -us -uc
cd ..
sudo dpkg -i libpurple0_2.4.1-1ubuntu2_amd64.deb
After this operation, pidgin (after reboot) starts to connect to ICQ.
PS It's time to switch to Jabber :)
UPD : For ubunt, it seems, there is already a package for ppa . However, my main task was to show how to rebuild the packages.
Source: https://habr.com/ru/post/28366/
All Articles