Recently I've received some mail asking for a brief explanation on how to build Linux audio applications from source code packages. Ask and ye shall receive, hence the following simple guide for the ...
Most software follows a 3-step process to build from source: ./configure && make && make install. The configure script checks dependencies, while make generates an executable; autoconf/automake help ...