-
Notifications
You must be signed in to change notification settings - Fork 1
/
Installer
executable file
·107 lines (76 loc) · 2.65 KB
/
Installer
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#!/bin/sh
# ============================================================================
INSTALLDIR="/boot/home/config/bin"
APPNAME="Hustler"
APPVERSION="2.2"
ADDONDIR="/boot/home/config/add-ons/Hustler"
BOOTSCRIPTDIR="/boot/home/config/boot"
STARTKEYWORD="# START Hustler -- DO NOT ALTER THIS LINE"
ENDKEYWORD="# END Hustler -- DO NOT ALTER THIS LINE"
# ============================================================================
RESULT=$(alert --info "$APPNAME $APPVERSION Installer
Thank you for trying out $APPNAME. This installer will automatically \
install and configure $APPNAME for you.
Do you wish to proceed with this operation?" "No" "Yes")
if [ $RESULT = "No" ] ; then
exit
fi
# ============================================================================
DESTINATION=$(find $INSTALLDIR -name $APPNAME)
if [ $DESTINATION ] ; then
RESULT=$(alert --warning "A version of $APPNAME is already installed.
Do you wish to replace it?" "No" "Yes")
if [ $RESULT = "No" ] ; then
alert --info "Installation halted. No changes have been made to your \
system."
exit
fi
fi
# ============================================================================
TOMEDIR=$(dirname "$0")
cp -f "$TOMEDIR/Binaries/Hustler" $INSTALLDIR
mimeset -f "$INSTALLDIR/$APPNAME"
if [ ! -e $ADDONDIR ] ; then
mkdir $ADDONDIR
fi
ADDONNAME1="CddaAddOn"
cp -f "$TOMEDIR/Binaries/$ADDONNAME1" $ADDONDIR
mimeset -f "$ADDONDIR/$ADDONNAME1"
ADDONNAME2="SoundPlayAddOn"
cp -f "$TOMEDIR/Binaries/$ADDONNAME2" $ADDONDIR
mimeset -f "$ADDONDIR/$ADDONNAME2"
# ============================================================================
RESULT=$(alert --info "Would you like to have $APPNAME configured to \
automatically start up ?
(This will modify your UserBootscript.)" "No" "Yes")
if [ $RESULT = "Yes" ] ; then
cd $BOOTSCRIPTDIR
if [ ! -e UserBootscript ] ; then
echo '#!/bin/sh' >UserBootscript
fi
RESULT=$(grep -x "$STARTKEYWORD" UserBootscript)
if [ ! $RESULT ] ; then
cat >>UserBootscript <<EOF
$STARTKEYWORD
if [ -e $INSTALLDIR/$APPNAME ] ; then
$INSTALLDIR/$APPNAME &
fi
$ENDKEYWORD
EOF
fi
fi
# ============================================================================
RESULT=$(alert --info "Would you like $APPNAME to be run right now?" \
"No" "Yes")
if [ $RESULT = "Yes" ] ; then
$INSTALLDIR/$APPNAME &
fi
cd $TOMEDIR
cd ../
# ============================================================================
RESULT=$(alert --info "Installation complete. Would you like to view the \
documentation for $APPNAME?" "No" "Yes")
if [ $RESULT = "Yes" ] ; then
/system/Tracker "$TOMEDIR"/Documentation.html &
fi
# ============================================================================