The Analog Real-time Synthesizer (aRts) provides sound support for KDE. It provides necessary libraries for kdelibs.
Download (HTTP): http://mirrors.isc.org/pub/kde/stable/3.2.2/src/arts-1.2.2.tar.bz2
Download (FTP): ftp://ftp.kde.org/pub/kde/stable/3.2.2/src/arts-1.2.2.tar.bz2
Download size: 949 KB
Estimated Disk space required: 25 MB
Estimated build time: 1.69 SBU
Install aRts by running the following commands:
./configure --prefix=$KDE_PREFIX --disable-debug \
--disable-dependency-tracking &&
make &&
make install
--prefix=$KDE_PREFIX : This option tells the process to install the package in $KDE_PREFIX. aRts is installed here as it's required before installing KDE.
--disable-debug : This option causes the system to be compiled without debugging code.
--disable-dependency-tracking : This option speeds up one time builds.