summaryrefslogtreecommitdiffstats
path: root/audio/sbagen/sbagen
blob: 4a92cbe028ac794c75f97c9abd1cf169d68716f0 (plain)
1
2
3
4
5
6
7
8
9
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