1
0
mirror of https://github.com/bsedin/gentoo-repo.git synced 2024-09-20 20:30:28 +00:00

Add apulse 0.1.11

This commit is contained in:
2018-03-30 00:45:57 +03:00
parent 2a55de7fd5
commit c852045de0
3 changed files with 67 additions and 0 deletions

14
media-sound/apulse/files/apulse Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
# Author: Daniel Campbell <zlg@gentoo.org>
# License: Creative Commons Public Domain Dedication (CC0 1.0)
# <https://creativecommons.org/publicdomain/zero/1.0/>
# apulse needs at least one argument
if [ $# -lt 1 ]; then
echo "Usage: apulse <app-path> [options]"
exit
fi
# Set library path for the application so it'll use apulse. DIRS is
# replaced by the ebuild to include the correct paths
LD_LIBRARY_PATH=@@DIRS@@${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} exec "$@"