tar -jxvf audiofile-0.2.6.tar.bz2
cd audiofile-0.2.6
./configure --prefix=/usr &&
make
make install
cd ..
rm -rf audiofile-0.2.6
exit
------------------------------------------------------------------------------------
tar -xvf libogg-1.1.3.tar.gz
cd libogg-1.1.3
./configure --prefix=/usr &&
make
make install
cd ..
rm -rf libogg-1.1.3
exit
------------------------------------------------------------------------------------
tar -jxvf esound-0.2.36.tar.bz2
cd esound-0.2.36
sed -i 's@doc/esound@&-0.2.36@' configure &&
./configure --prefix=/usr --sysconfdir=/etc &&
make
make install
cp -v -R docs/html /usr/share/doc/esound-0.2.36
cd ..
rm -rf esound-0.2.36
exit
------------------------------------------------------------------------------------
tar -jxvf mpg123-0.60.tar.bz2
cd mpg123-0.60
./configure --prefix=/usr &&
make
make install
cd ..
rm -rf mpg123-0.60
exit
------------------------------------------------------------------------------------
tar -jxvf nasm-0.98.39.tar.bz2
cd nasm-0.98.39
patch -Np1 -i ../nasm-0.98.39-security_fix-1.patch &&
./configure --prefix=/usr &&
make &&
make install &&
cd ..
rm -rf nasm-0.98.39
exit
------------------------------------------------------------------------------------
tar zxvf lame-3.96.1.tar.gz
cd lame-3.96.1
./configure --prefix=/usr --enable-mp3rtp &&
make
make install
cd ..
rm -rf lame-3.96.1
exit
------------------------------------------------------------------------------------
tar -jxvf libmpeg3-1.6-src.tar.bz2
cd libmpeg3-1.6
patch -Np1 -i ../libmpeg3-1.6-blfs_install-1.patch &&
./configure &&
make
make install
cd ..
rm -rf libmpeg3-1.6
exit
------------------------------------------------------------------------------------