ardour/tools/linux_packaging/install.sh
Todd Naugle 97abd700da Add release and svn version numbers to bundles and packages. Added a script to create a package with installer scripts inside.
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@8472 d708f5d6-7413-0410-9779-e7cbd77b26cf
2011-01-06 22:11:04 +00:00

16 lines
370 B
Bash
Executable file

#!/bin/sh
# Make sure we have a terminal for the user to see and then run
# the real install script.
if [ -z $WINDOWID ]; then
if which xterm > /dev/null; then
exec xterm -e ./stage2.run
elif which gnome-terminal > /dev/null; then
exec gnome-terminal -e ./stage2.run
elif which konsole > /dev/null; then
exec konsole -e ./stage2.run
fi
else
./stage2.run
fi