mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-14 21:56:41 +01:00
ad409b7053
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
15 lines
268 B
Bash
15 lines
268 B
Bash
#!/bin/sh
|
|
|
|
# wrapper script for Transcribe! binary
|
|
# by B. Watson
|
|
# part of the slackbuilds.org project
|
|
|
|
set -e
|
|
|
|
# This lets us call the script with relative pathnames:
|
|
if [ -n "$1" ]; then
|
|
arg="`readlink -f "$1"`"
|
|
fi
|
|
|
|
cd /usr/lib/transcribe
|
|
exec ./transcribe "$arg"
|