21 lines
541 B
Plaintext
21 lines
541 B
Plaintext
# Description: Commandline MP3 player
|
|
# URL: http://www.mpg123.de
|
|
# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
|
|
# Depends on: libtool, alsa-lib
|
|
|
|
name=mpg123
|
|
version=1.6.4
|
|
release=1
|
|
source=(http://www.mpg123.de/download/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--with-cpu=x86 \
|
|
--with-audio=alsa,oss,dummy \
|
|
--with-default-audio=alsa
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|