jomael / mpg321

mpg321 is a completely Free drop-in replacement for mpg123. It has been designed to work as a drop-in replacement for mpg123, for the use of front ends, shell scripts, etc. It does all mp3 decoding using the high-quality integer-only MAD library.
GNU General Public License v2.0
3 stars 0 forks source link

Build instructions for current Debian/Ubuntu/Mint Linux systems #1

Open rogerdahl opened 3 years ago

rogerdahl commented 3 years ago

This builds without any major issues on current Debian/Ubuntu/Mint Linux, just needs:

sudo apt install build-essential libao-dev libmad0-dev libid3tag0-dev libasound2-dev
./configure

In the generated Makefile, remove the version numbers from the aclocal and automake commands. In my case,

ACLOCAL = ${SHELL} /root/mpg321/missing --run aclocal-1.11
AUTOMAKE = ${SHELL} /root/mpg321/missing --run automake-1.11

->

ACLOCAL = ${SHELL} /root/mpg321/missing --run aclocal
AUTOMAKE = ${SHELL} /root/mpg321/missing --run automake

Then:

make -j
tillea commented 2 weeks ago

What about

sudo apt install mpg321

?