17 lines
401 B
Plaintext
17 lines
401 B
Plaintext
|
# Description: A console-based MP3 player. It claims to be the fastest MP3 decoder for Unix.
|
||
|
# URL: http://mpg123.de/
|
||
|
# Packager: pierre at nutyx dot org
|
||
|
# Depends on: alsa-lib
|
||
|
|
||
|
name=mpg123
|
||
|
version=1.23.0
|
||
|
release=1
|
||
|
|
||
|
source=( http://downloads.sourceforge.net/$name/$name-$version.tar.bz2)
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
./configure --prefix=/usr --with-module-suffix=.so
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|