-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
executable file
·228 lines (180 loc) · 5.76 KB
/
setup.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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
#! /bin/bash
function echoCo {
echo -e "\033[32m$@\033[0m"
}
function echoMe {
echo -e "\033[35m$@\033[0m"
}
function echoWa {
echo -e "\033[33m$@\033[0m"
}
function echoEr {
echo -e "\033[31m$@\033[0m"
}
# echoCo 'git pull'
# git pull
# echoCo 'git submodule init'
# git submodule init
# echoCo 'git submodule update'
# git submodule update
function install_cscope {
if [ ! -d ~/cscope-15.8b ]; then
echoMe 'install_cscope'
echoCo 'cd'
cd
if [ ! -f ~/cscope-15.8b.tar.gz ]; then
echoCo 'wget "https://jaist.dl.sourceforge.net/project/cscope/cscope/15.8b/cscope-15.8b.tar.gz"'
wget "https://jaist.dl.sourceforge.net/project/cscope/cscope/15.8b/cscope-15.8b.tar.gz"
fi
echoCo 'tar -zxvf cscope-15.8b.tar.gz'
tar -zxvf cscope-15.8b.tar.gz
echoCo 'cd cscope-15.8b'
cd cscope-15.8b
echoCo './configure'
./configure
echoCo 'make'
make
echoCo 'sudo make install'
sudo make install
echoCo 'sudo cp contrib/xcscope/cscope-indexer /usr/local/bin/'
sudo cp contrib/xcscope/cscope-indexer /usr/local/bin/
echoCo 'sudo chmod +x /usr/local/bin/cscope-indexer'
sudo chmod +x /usr/local/bin/cscope-indexer
echoCo 'cp contrib/xcscope/xcscope.el ~/.emacs.d/mypackages/'
cp contrib/xcscope/xcscope.el ~/.emacs.d/mypackages/
fi
}
function install_clang {
if which clang > /dev/null; then
echoMe 'clang has installed'
else
if which yum > /dev/null; then
echoCo 'sudo yum install -y epel-release'
sudo yum install -y epel-release
echoCo 'sudo yum install -y clang'
sudo yum install -y clang
echoCo 'sudo yum install -y clang-devel'
sudo yum install -y clang-devel
echoCo 'sudo yum groupinstall -y "Development Tools"'
sudo yum groupinstall -y "Development Tools"
else
echoMe 'yum not exist'
fi
fi
}
function install_clang_format {
if which clang-format > /dev/null; then
echoMe 'clang-format has installed'
else
if which brew > /dev/null; then
echoCo 'brew install clang-format'
brew install clang-format
echoCo 'brew install llvm'
brew install llvm
else
echoMe 'brew not exist'
fi
fi
}
function install_the_silver_searcher {
if which ag > /dev/null; then
echoMe 'ag has installed'
else
if which brew > /dev/null; then
echoCo 'brew install the_silver_searcher'
brew install the_silver_searcher
else
echoMe 'brew not exist'
fi
if which yum > /dev/null; then
echoCo 'sudo yum install -y the_silver_searcher'
sudo yum install -y the_silver_searcher
else
echoMe 'yum not exist'
fi
if which apt-get > /dev/null; then
echoCo 'sudo apt-get install -y silversearcher-ag'
sudo apt-get install -y silversearcher-ag
else
echoMe 'apt-get not exist'
fi
fi
}
case "$OSTYPE" in
solaris*)
echoMe "SOLARIS"
;;
darwin*)
echoMe "OSX"
install_clang_format
;;
linux*)
echoMe "LINUX"
install_cscope
install_clang
;;
bsd*)
echoMe "BSD"
;;
msys*)
echoMe "WINDOWS"
;;
*)
echoMe "unknown: $OSTYPE"
;;
esac
install_the_silver_searcher
echoCo 'cd ~/.emacs.d'
cd ~/.emacs.d
echoCo 'cp ~/.emacs.d/.jsbeautifyrc ~/'
cp ~/.emacs.d/.jsbeautifyrc ~/
echoCo 'cd'
cd
if which js-beautify > /dev/null; then
echoMe 'js-beautify has installed'
else
if which npm > /dev/null; then
echoCo 'npm --registry=https://registry.npm.taobao.org --disturl=https://npm.taobao.org/dist -g install js-beautify'
npm --registry=https://registry.npm.taobao.org --disturl=https://npm.taobao.org/dist -g install js-beautify
else
echoEr 'npm not exist'
fi
fi
if which eslint > /dev/null; then
echoMe 'eslint has installed'
else
if which npm > /dev/null; then
echoCo 'npm --registry=https://registry.npm.taobao.org --disturl=https://npm.taobao.org/dist -g install eslint'
npm --registry=https://registry.npm.taobao.org --disturl=https://npm.taobao.org/dist -g install eslint
else
echoEr 'npm not exist'
fi
fi
if [ -d ~/.all-the-icons-fonts ]
then
echoMe " ~/.all-the-icons-fonts exist"
else
echoMe " ~/.all-the-icons-fonts not exist"
echoCo "mkdir ~/.all-the-icons-fonts"
mkdir ~/.all-the-icons-fonts
fi
echoCo 'cp ~/.emacs.d/.eslintrc.js ~/'
cp ~/.emacs.d/.eslintrc.js ~/
echoCo 'cd'
cd
echoCo 'npm install --save-dev \
eslint \
eslint-config-standard \
eslint-plugin-html \
eslint-plugin-import \
eslint-plugin-node \
eslint-plugin-promise \
eslint-plugin-standard'
npm install --save-dev \
eslint \
eslint-config-standard \
eslint-plugin-html \
eslint-plugin-import \
eslint-plugin-node \
eslint-plugin-promise \
eslint-plugin-standard