git » pipewire.git » commit 2560da0

Rebuild to remove the export of LD_LIBRARY_PATH from pw-jack.

author David Runge
2022-01-17 17:36:29 UTC
committer David Runge
2022-01-17 17:36:29 UTC
parent 9b0fbeae743945862d363bfa2d7cc1d5ccaa8a49

Rebuild to remove the export of LD_LIBRARY_PATH from pw-jack.

Remove the export of LD_LIBRARY_PATH from pw-jack as the override will contain
/usr/lib which is known to cause trouble.

PKGBUILD +3 -1

diff --git a/PKGBUILD b/PKGBUILD
index 2d5a6eb..810f8c8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@ pkgbase=pipewire
 pkgname=(pipewire alsa-card-profiles pipewire-docs pipewire-alsa pipewire-jack
          pipewire-pulse gst-plugin-pipewire pipewire-zeroconf pipewire-v4l2)
 pkgver=0.3.43
-pkgrel=4
+pkgrel=5
 epoch=1
 pkgdesc="Low-latency audio/video router and processor"
 url="https://pipewire.org"
@@ -27,6 +27,8 @@ pkgver() {
 
 prepare() {
   cd pipewire
+  # remove export of LD_LIBRARY_PATH for pw-jack as it would add /usr/lib
+  sed -e '/LD_LIBRARY_PATH/d' -i pipewire-jack/src/pw-jack.in
 }
 
 build() {