Search Criteria
Package Details: mpd-rich-presence-discord-git r50.ced628d-3
Package Actions
Git Clone URL: | https://aur.archlinux.org/mpd-rich-presence-discord-git.git (read-only, click to copy) |
---|---|
Package Base: | mpd-rich-presence-discord-git |
Description: | Broadcast your MPD state using discord rich presence! |
Upstream URL: | https://github.com/justas-d/mpd-rich-presence-discord |
Licenses: | MIT |
Submitter: | E5ten |
Maintainer: | Cebtenzzre |
Last Packager: | Cebtenzzre |
Votes: | 4 |
Popularity: | 0.000000 |
First Submitted: | 2018-05-10 16:16 (UTC) |
Last Updated: | 2022-05-30 16:36 (UTC) |
Dependencies (5)
- discord-rpc-gitAUR
- gcc-libs (gcc-libs-gitAUR, gccrs-libs-gitAUR, gcc11-libsAUR, gcc-libs-snapshotAUR)
- libmpdclient
- cmake (cmake-gitAUR) (make)
- git (git-gitAUR, git-glAUR) (make)
Latest Comments
Cebtenzzre commented on 2022-05-29 17:58 (UTC)
This package doesn't install because discord-rpc-api is no longer in the AUR (PKGBUILD here).
chowbok commented on 2022-01-21 23:54 (UTC)
This doesn't depend on a local MPD instance, so you might want to remove those requirements from the service file.
Yellowsink commented on 2021-05-17 16:09 (UTC)
Might wanna replace the dependency on discord-rpc-api-git with discord-rpc-api as the -git version is not in the repos
justas-d commented on 2020-08-26 16:53 (UTC)
FYI: The repo has been migrated to: https://github.com/justas-d/mpd-rich-presence-discord
E5ten commented on 2018-06-05 16:46 (UTC)
Sorry about forgetting that, should be fixed.
justas-d commented on 2018-06-05 14:46 (UTC)
FYI the PKGBUILD fails without
mkdir -p $pkgdir/usr/lib/systemd/user/
justas-d commented on 2018-05-26 20:36 (UTC)
In that case, disregard my last comment as I have changed the service file in the repo to point to /usr/bin
E5ten commented on 2018-05-26 20:34 (UTC)
Thank you so much for changing it, I was just going to add a sed line to the PKGBUILD but this is even better.
E5ten commented on 2018-05-26 19:41 (UTC)
AUR packages are not allowed to install to /usr/local https://wiki.archlinux.org/index.php/Arch_packaging_standards#Package_etiquette Should just editing the service to point to the bin in /usr/bin work?
justas-d commented on 2018-05-26 18:53 (UTC) (edited on 2018-05-26 18:54 (UTC) by justas-d)
Project maintainer here. I would like to point out that while the PKGBUILD does place the mpd-discord.service in the correct location, it does not place or create a link to the rich presence for discord binary in the location that the service looks for (/usr/local/bin/mpd_discord_richpresence), making the systemd service unusable.
For anybody wanting to use the service, the quick fix would be to place
mkdir -p $pkgdir/usr/local/bin/
ln -s /usr/bin/mpd_discord_richpresence $pkgdir/usr/local/bin/mpd_discord_richpresence
at the botton of the prepare() function in the PKGBUILD.