audio/sbagen: Add missing file.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Willy Sudiarto Raharjo 2016-03-19 00:45:16 +07:00
parent ac113d9953
commit 7a9b6598c1
1 changed files with 10 additions and 0 deletions

10
audio/sbagen/sbagen Normal file
View File

@ -0,0 +1,10 @@
#!/bin/sh
if (which padsp >/dev/null 2>&1); then
exec padsp sbagen-bin "$@"
elif (which aoss >/dev/null 2>&1); then
exec aoss sbagen-bin "$@"
else
echo "padsp and aoss not found in \$PATH" >&2
exit 1
fi