compat-32/mpg123-32/Pkgfile

25 lines
607 B
Plaintext
Raw Normal View History

2022-07-03 16:14:18 +02:00
# Description: Commandline MP3 player
2021-10-19 05:35:58 +02:00
# URL: https://www.mpg123.de
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
2017-11-01 12:41:39 +01:00
# Depends on: alsa-lib-32 mpg123
name=mpg123-32
2022-11-06 10:25:54 +01:00
version=1.31.1
release=1
2017-03-14 04:04:41 +01:00
source=(https://www.mpg123.de/download/${name%-*}-$version.tar.bz2)
build() {
2017-03-14 04:04:41 +01:00
cd ${name%-*}-$version
2014-01-05 04:35:20 +01:00
./configure --prefix=/usr \
2021-08-11 18:28:35 +02:00
--libdir=/usr/lib32 \
--host=i686-pc-linux-gnu \
--with-audio=alsa,oss,dummy \
--with-default-audio=alsa
2014-01-05 04:35:20 +01:00
make
make DESTDIR=$PKG install
2016-02-18 11:16:29 +01:00
rm -r $PKG/usr/{bin,include,share/man,share}
}