# Description: Commandline MP3 player 
# URL:         http://www.mpg123.de
# Maintainer:  Juergen Daubert, jue at crux dot nu
# Depends on:  libtool, alsa-lib

name=mpg123
version=1.14.4
release=1
source=(http://www.mpg123.de/download/$name-$version.tar.bz2)

build() {
    cd $name-$version
    ./configure --prefix=/usr \
                --mandir=/usr/man \
                --with-module-suffix=.so \
                --with-audio=alsa,oss,dummy \
                --with-default-audio=alsa
    make
    make DESTDIR=$PKG install
}
