forked from group-butler/GroupButler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·76 lines (66 loc) · 2.02 KB
/
install.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env bash
# Lua Version
LUA=5.2
# Dependencies and libraries
NATIVE="luarocks lua$LUA liblua$LUA-dev git make unzip redis-server curl libcurl4-gnutls-dev"
ROCKS="luasocket luasec redis-lua lua-term serpent lua-cjson Lua-cURL"
# Color variables
Red='\033[0;31m'
Green='\033[0;32m'
Orange='\033[0;33m'
Blue='\033[0;34m'
Purple='\033[0;35m'
Cyan='\033[0;36m'
BRed='\033[1;31m'
BGreen='\033[1;32m'
BOrange='\033[1;33m'
BBlue='\033[1;34m'
BPurple='\033[1;35m'
BCyan='\033[1;36m'
Default='\033[0m'
read -p "Do you want me to install Group Butler Bot? (Y/N): "
case $REPLY in [yY])
# Install Dependencies
echo -en "${Blue}The packages will be installed:${Default} ${NATIVE}\n${Cyan}Do you want to install the dependencies (Y/N): ${Default}"
read REPLY
if [[ $REPLY == [yY] ]]; then
sudo apt-get install $NATIVE -y
fi
# Install Luarocks
echo -en "${Cyan}Do you want to download and install luarocks (Y/N): ${Default}"
read REPLY
if [[ $REPLY == [yY] ]]; then
git clone http://github.com/keplerproject/luarocks
cd luarocks
./configure --lua-version=$LUA
make build
sudo make install
cd ..
rm -rf luarocks*
fi
echo -en "${Cyan}Do you want to download the luarocks libraries (Y/N): ${Default}"
read REPLY
if [[ $REPLY == [yY] ]]; then
for ROCK in $ROCKS; do
sudo luarocks install $ROCK
done
fi
if [ ! -d .git ]; then
echo -en "${Green}Would you like to clone the source of GroupButler? (Y/N): ${Default}"
read REPLY
if [[ $REPLY == [yY] ]]; then
echo -en "${Orange}Fetching latest Group Butler source code\n${Default}"
git clone -b master https://github.com/RememberTheAir/GroupButler.git && cd GroupButler
fi
fi
if [ -d .git ]; then
echo -en "${Green}Do you want to use the beta branch (If you modified something we will do a stash)? (Y/N): ${Default}"
read REPLY
if [[ $REPLY == [yY] ]]; then
git stash
git checkout beta
fi
fi;
echo -en "${BGreen}Group Butler successfully installed! Change values in config file and run ${BRed}./launch.sh${BGreen}.${Default}";;
*) echo "Exiting...";;
esac