Package Details: plexamp-appimage 4.13.2-1

Git Clone URL: https://aur.archlinux.org/plexamp-appimage.git (read-only, click to copy)
Package Base: plexamp-appimage
Description: Modern music client for Plex
Upstream URL: https://plexamp.com
Conflicts: plexamp
Provides: plexamp
Submitter: TheGoliath
Maintainer: joeleg (naxels)
Last Packager: naxels
Votes: 29
Popularity: 0.089476
First Submitted: 2020-06-28 20:24 (UTC)
Last Updated: 2026-05-01 20:55 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

NovaViper commented on 2021-10-11 03:37 (UTC)

Can no longer install the package, I get this error whenever I try to install it on my computers:

:: (1/1) Parsing SRCINFO: plexamp-appimage
 -> failed to parse plexamp-appimage: Line 14: key "pkgbase" can not occur after pkgbase or pkgname: pkgbase = plexamp-appimage

jerrcs commented on 2021-10-02 14:56 (UTC)

It looks like the AppImage SHA512 hash has changed post-release? I have 3.7.1 installed, but attempting an install on a new laptop results in a validity check error.

==> Validating source files with sha512sums...
    Plexamp-3.7.1.AppImage ... FAILED
==> ERROR: One or more files did not pass the validity check!

The new hash is below:

8cabae335bd000d1981365b438697edf9981d6f7b92bfc4f7014e4d8ed5accf4410e54555340c7452432d93ef5930871112d40491b7dd6a015fdd01393aa1493  Plexamp-3.7.1.AppImage

I don't see any notes on the forum or changelog. In fact, they don't appear to list the hashes on their download page. Judging by a previous comment, this may have happened in the past too, but wanted to post a heads up in case anyone else is affected.

holderbaum commented on 2021-03-05 10:24 (UTC)

I noticed that plexamp won't start on a fresh arch installation without fuse being installed. This patch fixed the package for me:

diff --git a/PKGBUILD b/PKGBUILD
index dbc64ee..21cb8a3 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -11,6 +11,7 @@ conflicts=('plexamp')
 arch=('x86_64')
 url="https://plexamp.com"
 options=(!strip)
+depends=('fuse')
 _desktop_name=plexamp.desktop
 _filename=Plexamp-${pkgver}.AppImage
 source=(

P.S.: Is there a better way to submit such patches, maybe a synced repo on github/gitlab/any git hoster? :)

apastuszak commented on 2021-02-23 23:43 (UTC)

New SHA512SUM

6a310f421ded1855c3764dfdfe4b6c8f179656c0ed7a600769ec45853744c16efc0bcfbb43e29fe82b876740f6380f36068b465d3c89067de7bd826c70723749

apastuszak commented on 2021-02-23 23:30 (UTC)

Getting this error when I try to install:

==> Validating source files with sha512sums... Plexamp-3.4.2.AppImage ... FAILED ==> ERROR: One or more files did not pass the validity check!

owendaprile commented on 2021-01-31 04:43 (UTC) (edited on 2021-01-31 04:43 (UTC) by owendaprile)

For the icon issue, a better workaround for this package would be installing the icon files from squashfs-root/usr/share/icons/hicolor/$resolution/apps/plexamp.png. You could use something like this:

for res in "16x16" "32x32" "48x48" "64x64" "128x128" "256x256" "512x512"; do
    install -Dm644 squashfs-root/usr/share/icons/hicolor/$res/apps/plexamp.png $pkgdir/usr/share/icons/hicolor/$res/apps/plexamp.png
done

Also, you may want to include --disable-seccomp-filter-sandbox in the Exec line of the desktop file since some users appear to have problems with that.

guitaristtom commented on 2021-01-30 23:52 (UTC)

This isn't launching for me at all. Even is I run Plexamp.AppImage from the command line it doesn't launch.

NoobAlice commented on 2020-10-26 05:14 (UTC)

You have this AUR package plexamp-appimage and the AUR package plexamp-appimg. If they're the same thing, please submit a merge request for them.

His_Turdness commented on 2020-05-21 00:45 (UTC) (edited on 2020-05-21 00:45 (UTC) by His_Turdness)

"Yes, I think launching plexamp with "Plexamp.AppImage --disable-seccomp-filter-sandbox" is the recommended solution right now (make sure no plexamp process is running already i.E. with pkill plexamp)."

Noob question: how do I launch it with that option?