Package Details: megasync 5.11.0.3-1

Git Clone URL: https://aur.archlinux.org/megasync.git (read-only, click to copy)
Package Base: megasync
Description: Official MEGA desktop application for syncing with MEGA Cloud Drive
Upstream URL: https://github.com/meganz/MEGAsync/
Licenses: LicenseRef-Mega-Limited-Code-License
Submitter: son_link
Maintainer: dbermond
Last Packager: dbermond
Votes: 380
Popularity: 0.52
First Submitted: 2014-09-01 18:12 (UTC)
Last Updated: 2025-05-01 15:35 (UTC)

Latest Comments

« First ‹ Previous 1 .. 15 16 17 18 19 20 21 22 23 24 25 .. 53 Next › Last »

dmshimself commented on 2020-03-08 03:15 (UTC)

that stripped version works for me bartus - thanks

robson commented on 2020-03-06 13:49 (UTC)

Megasync-git doesn't need this idiotic dependency. https://aur.archlinux.org/packages/megasync-git/ And the latest version is being built, v4.3.0.8.0.g5899d638-1.

bartus commented on 2020-03-06 08:29 (UTC)

@michaldybczak: I've stripped the pdfium dep, try this one

bartus commented on 2020-03-06 08:02 (UTC)

@michaldybczak: Sadly it looks like this is a required, not optional component: `include/mega.h

#if defined(REQUIRE_HAVE_PDFIUM) && !defined(HAVE_PDFIUM)
#error compilation with HAVE_PDFIUM is requir

michaldybczak commented on 2020-03-05 22:28 (UTC)

libpdfium is now considered a dependency! Is it really? I could only get it through AUR (libpdfium-nojs) which tells me that this is some obscure package and there should be some better alternative. I needed to download over 400MB to install it! This looks ridiculous.

radu commented on 2020-03-05 14:08 (UTC) (edited on 2020-03-05 14:18 (UTC) by radu)

Cannot build megasync 4.2.5.4 I tried updating PKGBUILD with -fpermissive and still doesn't build.

WARNING: Project ERROR: Unknown module(s) in QT: macextras winextras
lprodump error: Cannot open ~/.cache/yay/megasync/src/MEGAsync/src/jkIoBR.json for writing.
==> ERROR: A failure occurred in build().

strobelite commented on 2020-03-01 18:11 (UTC)

For those on GNOME wondering how to run MEGAsync in the background (you may get a notification on startup that it can't find a system tray,) I used the GNOME extension called Tray Icons. Install that, then restart MEGAsync, and now it will run in the background the way it was supposed to.

ix5231 commented on 2019-10-15 10:33 (UTC)

Workaround: Add -fpermissive to QMAKE_CXXFLAGS

For the AUR PKGBUILD:

diff --git a/PKGBUILD b/PKGBUILD
index 38d9165..0947609 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -55,7 +55,7 @@ build() {

     # build megasync
     cd "../.."
-    qmake-qt5 "CONFIG += FULLREQUIREMENTS" MEGA.pro
+    qmake-qt5 "CONFIG += FULLREQUIREMENTS" "QMAKE_CXXFLAGS += -fpermissive" MEGA.pro
     lrelease-qt5 MEGASync/MEGASync.pro
     make
 }

Stane1983 commented on 2019-10-08 16:48 (UTC)

Error while building on gcc 9.2.0:

google_breakpad/client/linux/handler/exception_handler.cc:107:12: error: 'int tgkill(pid_t, pid_t, int)' was declared 'extern' and later 'static' [-fpermissive] 107 | static int tgkill(pid_t tgid, pid_t tid, int sig) { | ^~~~~~