Package Details: rpc-bridge 1.4.0.1-2

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: 2025-12-29 03:55 (UTC)

Dependencies (1)

Required by (1)

Sources (1)

Latest Comments

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.