http://t3x.org/bits/installing.html (light|dark)
Back in the days, you had to spend half an hour tuning configuration
variables in Makefile
and figuring out the proper
#include
files for your system. Today, installing
software from sources is as easy as:
tar xvfz $package.tgz && \ (cd $package; ./configure && make install) || \ rm -rf $package
Because in case of failure, there is nothing left to rescue. Big time-saver, indeed!