-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathAppRun.sh
executable file
·52 lines (47 loc) · 1.53 KB
/
AppRun.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env bash
# The AppImage runtime sets some special environment variables. We provide
# default values here in case the user tries to run this script outside an
# AppImage where the variables would otherwise be undefined.
if [[ ! "${APPIMAGE}" || ! "${APPDIR}" ]]; then
export APPIMAGE="$(readlink -f "${0}")"
export APPDIR="$(dirname "${APPIMAGE}")"
fi
export LD_LIBRARY_PATH="${APPDIR}/lib:${LD_LIBRARY_PATH}"
export SNEEDACITY_PATH="${SNEEDACITY_PATH}:${APPDIR}/share/sneedacity"
export SNEEDACITY_MODULES_PATH="${SNEEDACITY_MODULES_PATH}:${APPDIR}/lib/modules"
function help()
{
# Normal sneedacity help
"${APPDIR}/bin/sneedacity" --help
# Special options handled by this script
cat >&2 <<EOF
--readme display README
--license display LICENSE
--man[ual|page] display sneedacity(1) manual page
--check-dependencies check library dependency fulfillment (developer tool)
EOF
# Blank line then special options handled by the AppImage runtime
"${APPIMAGE}" --appimage-help
}
# Intercept command line arguments
case "$1" in
-h|--help )
help
;;
--readme )
exec less "${APPDIR}/share/doc/sneedacity/README.txt"
;;
--license )
exec less "${APPDIR}/share/doc/sneedacity/LICENSE.txt"
;;
--man|--manual|--manpage )
exec man "${APPDIR}/share/man/man1/sneedacity.1"
;;
--check-depends|--check-dependencies )
exec bash "${APPDIR}/bin/check_dependencies"
;;
* )
# Other arguments go to Sneedacity
exec "${APPDIR}/bin/sneedacity" "$@"
;;
esac