Package Details: rpc-bridge 1.4.1.3-1

Git Clone URL: https://aur.archlinux.org/rpc-bridge.git (read-only, click to copy)
Package Base: rpc-bridge
Description: Enable Rich Presence between your Wine applications and the native Discord client on Linux
Upstream URL: https://github.com/EnderIce2/rpc-bridge
Keywords: discord rich-presence rpc wine
Licenses: MIT
Submitter: p0358
Maintainer: p0358 (enderice2)
Last Packager: p0358
Votes: 0
Popularity: 0.000000
First Submitted: 2025-12-29 03:47 (UTC)
Last Updated: 2026-06-07 19:47 (UTC)

Dependencies (2)

Required by (1)

Sources (1)

Latest Comments

p0358 commented on 2026-06-07 19:50 (UTC)

@nicholascw Sorry for delayed action, I applied git into makedepends as suggested. But as for LICENSE, the wiki section you linked explicitly says:

License families like BSD or MIT are, strictly speaking, not a single license and each instance requires a separate license file. In license variable refer to them using a common SPDX identifier (e.g. BSD-3-Clause or MIT), but then provide the corresponding file as if it was a custom license.

You're right that the path was wrong though. It's an accidental omission from converting from .tar.gz to git clone, where I didn't clean my build directory and hence didn't notice the LICENSE file changing its path. Fixed now.

nicholascw commented on 2026-03-19 08:33 (UTC)

Suggested change as belows

diff --git a/PKGBUILD b/PKGBUILD
index 02b0acb..7c0d84e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@ pkgver=1.4.0.1
 pkgrel=2
 pkgdesc="Enable Rich Presence between your Wine applications and the native Discord client on Linux"
 url="https://github.com/EnderIce2/rpc-bridge"
-makedepends=("mingw-w64-gcc")
+makedepends=("mingw-w64-gcc" "git")
 license=("MIT")
 arch=("any")
 #source=("$pkgname.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
@@ -20,5 +20,4 @@ build() {
 package() {
        install -Dm755 "$pkgname"/build/bridge.sh -t "$pkgdir"/opt/$pkgname/
        install -Dm755 "$pkgname"/build/bridge.exe -t "$pkgdir"/opt/$pkgname/
-       install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
 }
  • git is needed in makedepends as it is not part of base or base-devel, so it's needed for the git source in a clean build environment.
  • The install line for LICENSE is not found as is, and actually it does not need to be installed given it's MIT.