# Exit on error:
set -e

wget ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.0.27.2.tar.bz2
tar xf alsa-utils-1.0.27.2.tar.bz2
cd alsa-utils-1.0.27.2

./configure \
    --prefix=/usr \
    --disable-xmlto
make
make install

cd ..
echo You can now add yourself to the audio group.
exit 0
