arkq / cmusfm

Last.fm standalone scrobbler for the cmus music player
GNU General Public License v3.0
234 stars 5 forks source link

Doubt about installing cmusfm #44

Closed erlonpr closed 3 years ago

erlonpr commented 3 years ago

First, I would like to congratulate you for the great idea to develop a plugin that integrates cmus with Lastfm.

But back to what matters... I'm getting in touch as I recently discovered the cmus audio player and I'm still learning how to use it. Also, I really enjoy scrobbling the songs I listen to locally with my Lastfm profile.

Based on that, I would like to integrate the cmus with my Lastfm, but I am not able to understand how I can install the cmusfm.

Could you post a step by step how to correctly install cmusfm?

erlonpr commented 3 years ago

I'm trying to install cmusfm on Ubuntu 20.04.

arkq commented 3 years ago

Simply follow the "Installation" section from the README file. For required dependencies see this: https://github.com/Arkq/cmusfm/blob/master/.github/workflows/build-and-test.yaml#L19

erlonpr commented 3 years ago

@Arkq thank you very much for the explanations.

Based on the information you gave me I managed to install the cmusfm plugin on Ubuntu 20.04 as follows:

sudo apt-get install -y cmus

sudo apt-get install -y autoconf

sudo apt-get install -y libcurl4-gnutls-dev

sudo apt-get install -y libnotify-dev

cd ~/.config/cmus

git clone https://github.com/Arkq/cmusfm.git

cd cmusfm

autoreconf --install

mkdir build && cd build

../configure --enable-libnotify

sudo su

make && make install

Once again, thank you very much for the explanations.