Ubuntu – MegaSync client requires libcrypto++9

aptdependenciesmegapackaging

So, I was trying to install the sync client for Mega (http://mega.nz) on my Ubuntu 15.10 install. Yes, I know it's pre-release, but here is my question:
When i install the .dep file, I get that

Errors were encountered while processing:
 megasync
dpkg: dependency problems prevent configuration of megasync:
 megasync depends on libcrypto++9; however:
  Package libcrypto++9 is not installed.

When I then try to install libcrypto++9, I get the following error:

E: Package 'libcrypto++9' has no installation candidate

It then tells me that libcrypto++9v5 replaces it, but installing that doesn't satisfy MegaSync.

A quick Google search reveals that the v5 means "compiled using gcc5". Alas, the library is still the same. Why the new name, and how can I install my .deb file?

Best Answer

For Ubuntu 15.10 (All Versions):

Add this repository to your /etc/apt/sources.list (check here for other versions):

deb https://mega.nz/linux/MEGAsync/xUbuntu_15.10/ ./

Get/Add the key:

wget -O - https://mega.nz/linux/MEGAsync/xUbuntu_15.10/Release.key | sudo apt-key add -

Update: sudo apt-get update

Install MEGASync:

sudo apt-get install megasync

For Nautilus plugin:

sudo apt-get install nautilus-megasync

Related Question