Page 1 of 1

Installing on Mint 20.3

Posted: Mon Jul 25, 2022 2:47 pm
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?

Re: Installing on Mint 20.3

Posted: Wed Aug 03, 2022 4:10 pm
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

Re: Installing on Mint 20.3

Posted: Thu Aug 04, 2022 7:01 am
by AngusYoung
Thanks for your help, will give it a try.