1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-30 02:51:25 +00:00
morpheus/pkgs/mpg123/build
Daniel Bainton ac90eb3aa3 Move each package to their own dir
Also support for the $pkgdir variable in build files, which will include
the full path to the directory of the package (for patches, configs etc)
2014-03-09 13:56:35 +02:00

18 lines
302 B
Plaintext

v="1.18.0"
url="$mirror/mpg123-$v.tar.bz2"
build: tinyalsa
cd src/mpg123-$v
case "$arch" in
x86_64)
A=x86-64
;;
i486)
A=x86
;;
esac
CC=$CC ./configure --prefix="$root" --with-default-audio=tinyalsa \
--enable-static=yes --enable-shared=no --with-cpu="$A"
make -j$nprocs
make install