]> git.draconx.ca Git - gentoo-fixes.git/blob - media-sound/apulse/files/apulse
app-emulation/wine-vanilla-4.0.4: Adapt mpg123 dependency.
[gentoo-fixes.git] / media-sound / apulse / files / apulse
1 #!/bin/sh
2 # Author:  Daniel Campbell <zlg@gentoo.org>
3 # License: Creative Commons Public Domain Dedication (CC0 1.0)
4 #          <https://creativecommons.org/publicdomain/zero/1.0/>
5
6 # apulse needs at least one argument
7 if [ $# -lt 1 ]; then
8         echo "Usage: apulse <app-path> [options]"
9         exit
10 fi
11
12 # Set library path for the application so it'll use apulse. DIRS is
13 # replaced by the ebuild to include the correct paths
14 LD_LIBRARY_PATH=@@DIRS@@${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} exec "$@"