compat-32/mpg123-32/Pkgfile

27 lines
654 B
Plaintext
Raw Normal View History

# Description: Commandline MP3 player
# URL: http://www.mpg123.de
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
# Depends on: libtool alsa-lib-32 mpg123
name=mpg123-32
2014-02-23 15:00:47 +01:00
version=1.18.1
release=1
source=(http://www.mpg123.de/download/mpg123-$version.tar.bz2)
build() {
cd mpg123-$version
2014-01-05 04:35:20 +01:00
./configure --prefix=/usr \
--libdir=/usr/lib32 \
--host=i686-pc-linux-gnu \
--mandir=/usr/man \
--with-module-suffix=.so \
--with-audio=alsa,oss,dummy \
--with-default-audio=alsa
2014-01-05 04:35:20 +01:00
make
make DESTDIR=$PKG install
2014-01-05 04:35:20 +01:00
rm -r $PKG/usr/{bin,include,man}
}