nurupo / vlc-pause-click-plugin

Plugin for VLC that pauses/plays video on mouse click
GNU Lesser General Public License v2.1
914 stars 63 forks source link

Can't get it to work on Ubuntu 18.04 #50

Closed shukero closed 5 years ago

shukero commented 5 years ago

HI everyone,

For some reason I can't get this to work on Ubuntu 18.04 :(. I tried to follow the normal install guide for debian Linux install:

sudo apt-get install build-essential pkg-config libvlccore-dev libvlc-dev But when I tried to do the: make sudo make install

It gave me this: make: *** No targets specified and no makefile found. Stop.

So I looked at others having this issue; and I found the following for an older version of VLC:

'Sudo apt-get update sudo apt-get upgrade sudo apt-get dist-upgrade sudo reboot sudo apt-get install vlc git git clone https://github.com/nurupo/vlc-pause-click-plugin.git cd vlc-pause-click-plugin/vlc-2.2.x+ sudo apt-get install build-essential pkg-config libvlccore-dev make sudo make install`

I got to: cd vlc-pause-click-plugin/vlc-2.2.x+ before running into an issue - as there is no directory like this now.

Could someone please help me finish this install so I can get click to pause on VLC 3.0.3?

Thanks, ~Mike

nurupo commented 5 years ago

You are supposed to run make in the root directory of this repository.

nurupo commented 5 years ago

Here are the dumbed down instructions:

sudo apt-get update
sudo apt-get install build-essential pkg-config libvlccore-dev libvlc-dev git vlc
git clone https://github.com/nurupo/vlc-pause-click-plugin
cd vlc-pause-click-plugin
git checkout 1.0.0
make
sudo make install

You can delete the "vlc-pause-click-plugin" directory after that.

shukero commented 5 years ago

HI Nurupo,

Thank you very much for the information :) - That worked.

HAve a great day,

On Fri, Nov 23, 2018 at 5:30 PM nurupo notifications@github.com wrote:

Here are the dumbed down instructions:

sudo apt-get update sudo apt-get install build-essential pkg-config libvlccore-dev libvlc-dev git vlc git clone https://github.com/nurupo/vlc-pause-click-plugin cd vlc-pause-click-plugin git checkout 1.0.0 make sudo make install

You can delete the "vlc-pause-click-plugin" directory after that.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/nurupo/vlc-pause-click-plugin/issues/50#issuecomment-441325273, or mute the thread https://github.com/notifications/unsubscribe-auth/APDsb5IOXRURUB0YA-u8XDoXiimSPVXlks5uyHb5gaJpZM4Yv3m8 .

nurupo commented 5 years ago

Cool, glad it worked. Feel free to open an issue if you have any trouble getting the plugin to work.