Installing on Mint 20.3

General discussions
Locked
AngusYoung
Posts: 2
Joined: Mon Jul 25, 2022 2:44 pm

Installing on Mint 20.3

Post by AngusYoung »

Hello I'm new to Linux Mint and i was trying to install Guayadeque Music Player following this guide: viewtopic.php?t=6656

Unfortunately I was not able to install it, what am I missing?
atrihospithikos
Posts: 1
Joined: Tue May 03, 2011 9:14 am

Re: Installing on Mint 20.3

Post by atrihospithikos »

Have you tried installing from git? I have it installed on LM 20.3 and updated it on LM 21 (today)

Code: Select all

sudo apt install git build-essential cmake gettext
sudo apt install libwxgtk3.0-gtk3-dev libtag1-dev libwxsqlite3-3.0-dev libsqlite3-dev
sudo apt install libcurl4-openssl-dev libdbus-1-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libgpod-dev libjsoncpp-dev
sudo apt install gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly

cd directory_where_to_put_source_code
git clone https://github.com/anonbeat/guayadeque.git
cd guayadeque
./build
sudo make install
To update:

Code: Select all

cd ~/guayadeque
git pull
./build
sudo make install
AngusYoung
Posts: 2
Joined: Mon Jul 25, 2022 2:44 pm

Re: Installing on Mint 20.3

Post by AngusYoung »

Thanks for your help, will give it a try.
Locked