Package Details: deezer 6.0.130-1

Git Clone URL: https://aur.archlinux.org/deezer.git (read-only, click to copy)
Package Base: deezer
Description: A proprietary music streaming service
Upstream URL: https://www.deezer.com/
Keywords: deezer desktop streaming
Licenses: custom:"Copyright (c) 2006-2024 Deezer S.A."
Provides: deezer
Submitter: IlyaGulya
Maintainer: SibrenVasse
Last Packager: SibrenVasse
Votes: 59
Popularity: 1.05
First Submitted: 2018-12-12 06:54 (UTC)
Last Updated: 2024-05-18 21:57 (UTC)

Pinned Comments

SibrenVasse commented on 2024-01-17 12:02 (UTC) (edited on 2024-01-17 12:02 (UTC) by SibrenVasse)

If you're having issues building the package, make sure the prettier package is up-to-date on your system.

Current version is prettier 3.2.2

Latest Comments

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

trbhlz commented on 2019-08-15 12:11 (UTC)

Good work! Would be perfect without the menu bar.

xas commented on 2019-08-13 18:25 (UTC)

thanks @SibrenVasse!

aviranzerioniac commented on 2019-08-11 14:09 (UTC)

thank you, @SibrenVasse for taking your time to maintain the package and updating it, @IlyaGulya thankyou for all that you have done for us till now, the last update works without hiccups, which were going on since some time, the dark mode is also finally here

IlyaGulya commented on 2019-08-08 21:34 (UTC)

Hello guys! Sorry, but I've moved from Arch linux to the macOS and I no longer have intention to support this package since I have offically supported app on this OS. So, I will make it orphan and feel free to maintain it instead of me, please.

yurikoles commented on 2019-08-07 09:50 (UTC)

Please update package and switch to electron3

neuromante commented on 2019-07-24 09:56 (UTC)

Deezer 4.11.2 is out

neuromante commented on 2019-07-20 17:12 (UTC)

@SibrenVasse Right, sorry didn't see it...App works pretty well.

SibrenVasse commented on 2019-07-20 17:09 (UTC)

@neuromante yes I know, that's why I changed line #34 in the diff in my previous post.

neuromante commented on 2019-07-20 17:03 (UTC)

@SibrenVasse It will work but you have to change /usr/bin/deezer bash script as well It has to point to electron4

SibrenVasse commented on 2019-07-20 13:51 (UTC)

Can you make this package depend on the package electron4 (4.2.8)? Using this version it does render for me. I think that would be a better solution than using an outdated 'electron'.

diff --git a/PKGBUILD b/PKGBUILD
index 5992dde..d78fb93 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,12 +1,12 @@
 # Maintainer: Ilya Gulya <ilyagulya@gmail.com>
 pkgname="deezer"
-pkgver=4.10.2
+pkgver=4.12.3
 pkgrel=1
 pkgdesc="A proprietary music streaming service"
 arch=('x86_64')
 url="https://www.deezer.com/"
 license=('custom:"Copyright (c) 2006-2018 Deezer S.A."')
-depends=('electron>=3.0.10' 'electron<4.0.0')
+depends=('electron4')
 provides=('deezer')
 options=('!strip')
 makedepends=('p7zip')
@@ -14,7 +14,7 @@ source=(
 "$pkgname-$pkgver-setup.exe::https://www.deezer.com/desktop/download/artifact/win32/x86/$pkgver"
 "$pkgname.desktop"
 )
-md5sums=('74b51845d654091da2caed2a7507b36c'
+md5sums=('afd9472859dc6c7fdd9e41b61a66ac23'
          '98ec5effa2d9a1d8c3c030125a2937c0')

 package() {
@@ -31,7 +31,7 @@ package() {
     7z x -so app-32.7z "resources/build/win/app.ico" > app.ico

     echo "#!/bin/sh" > deezer
-    echo "/usr/bin/electron /usr/share/deezer/app.asar" >> deezer
+    echo "/usr/bin/electron4 /usr/share/deezer/app.asar" >> deezer

     install -Dm644 app.asar "$pkgdir"/usr/share/deezer/app.asar
     install -Dm644 app.ico "$pkgdir"/usr/share/deezer/app.ico