diff options
| author | Paul Buetow <paul@buetow.org> | 2013-04-06 13:14:42 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2013-04-06 13:14:42 +0200 |
| commit | 98eac951f8087b213f5850bd126dcb279db360a8 (patch) | |
| tree | c121f5c4df1aab847defa539990c1315bd5ba4a8 /quickstart.sh | |
| parent | 0537da9d1e0f593130fc3967befb71e673b016bc (diff) | |
tagging ychat-0.6ychat-0.6
Diffstat (limited to 'quickstart.sh')
| -rwxr-xr-x | quickstart.sh | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/quickstart.sh b/quickstart.sh new file mode 100755 index 0000000..46e1840 --- /dev/null +++ b/quickstart.sh @@ -0,0 +1,34 @@ +#!/bin/sh +STARS="----------------------------------------\n" +echo "Welcome to yChat 0.5 Quickstart" +echo -e $STARS +echo "Copyright 2003, Paul C. Buetow - Volker Richter" +echo "yChat++ is developed under GNU Public License" +echo "http://www.ychat.org" +echo -e "\n" +echo -e "Press enter to begin quickstart" +read +echo "STEP I" +echo -e "$STARS PREPARING SOURCES\n\n\n" +./configure +if [ ! -e ./Makefile ]; then + echo "STEP I UNSUCCESSFUL" + exit 1; +else + echo "STEP II COMPILING SOURCES" +fi +make && +cd mods && +./compile.sh && +cd - +if [ ! -x ./ychat ]; then + echo "STEP II UNSUCCESSFUL" + exit 1 +fi +echo -e "\n\nSTEP II SUCCESSFUL\n\n" +echo -e "yChat is now ready to go. You can start yChat by running ./ychat from your console.\n\n" +echo -e "Should i start the yChat now? [N/y]: " +read startchat +if [ $startchat == "y" ]; then + ./ychat +fi |
