-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
executable file
·408 lines (326 loc) · 11.2 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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
#!/bin/bash
#----------------------------------------------------------------------
# Welcome message.
# ASCII Art. 87487
# http://patorjk.com/software/taag/#p=display&f=Calvin%20S&t=GNU%20Emacs
cat << EOF
------------------------------------------------------------------------
╔═╗╔╗╔╦ ╦ ╔═╗┌┬┐┌─┐┌─┐┌─┐
║ ╦║║║║ ║ ║╣ │││├─┤│ └─┐
╚═╝╝╚╝╚═╝ ╚═╝┴ ┴┴ ┴└─┘└─┘
This will guide you to install GNU Emacs, his friends and additional
files to have, at least, a small part of the all power that GNU Emacs
has. Press ENTER to continue.
------------------------------------------------------------------------
EOF
#----------------------------------------------------------------------
# Install Emacs.
function installEmacs {
if which emacs >/dev/null
then
MSG="$(emacs --version | head -n 1) is installed. Do you want reinstall it? [y]es/[n]o and next"
echo; echo
else
MSG="GNU Emacs isn't installed. Do you want install it? [y]es/[n]o and next"
echo; echo
fi
echo ------------------------------------------------------------
echo "$MSG"
read opcao
case $opcao in
y )
echo "Adding repository to Emacs: `ppa:kelleyk/emacs`"
sudo add-apt-repository ppa:kelleyk/emacs -y
sudo apt-get update -y
echo "Running \"apt-get build-dep emacs\"."
sudo apt-get build-dep emacs -y
echo
echo "Running \"apt-get install emacs\"."
sudo apt-get install emacs -y
echo; echo
;;
* )
echo "Skipped."; echo; echo
;;
esac
echo ------------------------------------------------------------
echo "Install \"emacs-goodies-el\" (a set of useful packages)? [y]es/[n]o and next"
read opcao
case $opcao in
y )
echo "Installing \"emacs-goodies-el\"."
sudo apt-get install emacs-goodies-el -y
echo; echo
;;
* )
echo "Skipped."; echo; echo
;;
esac
echo ------------------------------------------------------------
echo "Install \"virtualenv\" (Needed for Python auto complete)? [y]es/[n]o and quit"
read opcao
case $opcao in
y )
echo "Installing \"virtualenv\"."
sudo apt-get install virtualenv -y
echo; echo
;;
* )
echo "Skipped."; echo; echo
;;
esac
}
#----------------------------------------------------------------------
# Install packages.
function installPackages {
echo ------------------------------------------------------------
echo "Do you want to install GNU Emacs packages listed"
echo "in \"install-packages.el\" file?" [y]es/[q]uit
read opcao
case $opcao in
y )
emacs --script install-packages.el
echo; echo "Packages installed."
;;
* )
echo "Skipped."; echo; echo
;;
esac
echo "This is the directory tree of the installed packages:"
tree -L 1 $HOME/.emacs.d/elpa/
}
#----------------------------------------------------------------------
# Move emacs init files and extentions.
function moveEmacsFiles {
cp -v init.el ~/.emacs.d/init.el
cp -v funcs.el ~/.emacs.d/lisp/
emacs --batch --eval '(byte-compile-file "~/.emacs.d/lisp/funcs.el")'
}
function createEmacsFiles {
emacsddir="$HOME/.emacs.d/lisp/"
if [ ! -d "$emacsddir" ]
then
echo ------------------------------------------------------------
echo "$emacsddir doesn't exists. It will be created."
mkdir -v -p $HOME/.emacs.d/lisp/
echo; echo
else
echo ------------------------------------------------------------
echo "$emacsddir exists."
echo; echo
fi
dotemacs="$HOME/.emacs.d/init.el"
if [ -f "$dotemacs" ]
then
echo ------------------------------------------------------------
echo "~/.emacs.d/init.el file found."
echo "Do you want replace it? [y]es/[q]uit"
read opcao
case $opcao in
y )
moveEmacsFiles
echo; echo
;;
* )
echo "Skipped."; echo; echo
;;
esac
else
echo ------------------------------------------------------------
echo "~/.emacs.d/init.el file not found."
echo "It will be created."
moveEmacsFiles
echo; echo
fi
}
#----------------------------------------------------------------------
# Send line or region for shell buffer.
function downloadEssh {
wget -N 'http://www.emacswiki.org/emacs/download/essh.el' -P $HOME/.emacs.d/lisp/
emacs --batch --eval '(byte-compile-file "~/.emacs.d/lisp/essh.el")'
}
function createEssh {
file="$HOME/.emacs.d/lisp/essh.el"
if [ -f "$file" ]
then
echo ------------------------------------------------------------
echo "~/.emacs.d/lisp/essh.el file found."
echo "Do you want update it? [y]es/[q]uit"
read opcao
case $opcao in
y )
downloadEssh
;;
* )
echo "Skipped."; echo; echo
;;
esac
else
echo ------------------------------------------------------------
echo "~/.emacs.d/lisp/essh.el file not found."
echo "It will be created."
downloadEssh
echo; echo
fi
}
#----------------------------------------------------------------------
# Bookmark+.
function downloadBookmark {
read opcao
case $opcao in
y )
# https://github.com/emacsmirror/bookmark-plus
wget -N https://github.com/emacsmirror/bookmark-plus/archive/master.zip -P $HOME/.emacs.d/elpa/
unzip $HOME/.emacs.d/elpa/master.zip -d $HOME/.emacs.d/elpa/
mv -v $HOME/.emacs.d/elpa/bookmark-plus-master $HOME/.emacs.d/elpa/bookmark+
rm -v $HOME/.emacs.d/elpa/master.zip
# emacs --batch --eval '(byte-recompile-directory "~/.emacs.d/elpa/bookmark+" 0 t)'
;;
* )
echo "Skipped."; echo; echo
;;
esac
}
function createBookmark {
hasBookmark=$(ls $HOME/.emacs.d/elpa/ | grep 'bookmark+')
if [ "$hasBookmark" == "" ];
then
echo ------------------------------------------------------------
echo "~/.emacs.d/lisp/bookmark+ folder not found."
echo "Do you want download and update it? [y]es/[q]uit"
downloadBookmark
else
echo ------------------------------------------------------------
echo "~/.emacs.d/lisp/bookmark+ folder found."
echo "Do you want download and update it? [y]es/[q]uit"
downloadBookmark
fi
}
#-----------------------------------------------------------------------
# Electric-spacings.
function downloadElectricSpacing {
echo "Do you want download it? [y]es/[q]uit"
read opcao
case $opcao in
y )
wget -N 'https://raw.githubusercontent.com/walmes/electric-spacing/master/electric-spacing-r.el' -P $HOME/.emacs.d/lisp/
;;
* )
echo "Download skipped."; echo; echo
break
;;
esac
}
function createElectricSpacing {
case $opcao in
y )
if [ ! -f ~/Projects/electric-spacing/electric-spacing-r.el ]
then
echo "Git project file electric-spacing-r.el not found!"
downloadElectricSpacing
else
cp -v ~/Projects/electric-spacing/electric-spacing-r.el \
~/.emacs.d/lisp/electric-spacing-r.el
fi
emacs --batch --eval '(byte-compile-file "~/.emacs.d/lisp/electric-spacing-r.el")'
;;
* )
echo "Skipped."; echo; echo
;;
esac
}
function moveElectricSpacing {
file="$HOME/.emacs.d/lisp/electric-spacing-r.el"
if [ -f "$file" ]
then
echo ------------------------------------------------------------
echo "~/.emacs.d/lisp/electric-spacings-r.el file found."
echo "Do you want update it? [y]es/[q]uit"
read opcao
createElectricSpacing
else
echo ------------------------------------------------------------
echo "~/.emacs.d/lisp/electric-spacing-r.el file not found."
echo "It will be created."
opcao="y"
createElectricSpacing
fi
}
#-----------------------------------------------------------------------
function installMeld {
echo "Do you want to install \`meld\`? [y]es/[n]o"
read opcao
case $opcao in
y )
echo "Running \"apt-get install meld\"."
sudo apt-get install meld -y
echo; echo
;;
* )
echo "Skipped."; echo; echo
;;
esac
}
function useMeld {
meld init.el ~/.emacs.d/init.el && \
meld funcs.el ~/.emacs.d/lisp/funcs.el
}
function callMeld {
if which meld >/dev/null
then
useMeld
echo; echo
else
echo "The program \`meld\` ins't installed."
installMeld
useMeld
echo; echo
fi
}
#-----------------------------------------------------------------------
# Remember after installation.
read -r -d '' REMEMBER <<EOM
------------------------------------------------------------------------
This to do the first time you open GNU Emacs:
1. Byte compile \`bookmark+\` directory. Run in a LISP buffer:
(byte-recompile-directory "~/.emacs.d/elpa/bookmark+" 0 t)
2. Conclude \`jedi\` installation:
M-x jedi:install-server RET
------------------------------------------------------------------------
EOM
#----------------------------------------------------------------------
# Cicle among options.
while true
do
printf "\nMenu of options:\n\n"
printf " 1. Install GNU Emacs, \`emacs-goodies-el\` and \`virtualenv\`\n"
printf " 2. Install GNU Emacs packages listed in \`install-packages.el\`.\n"
printf " 3. Move and byte compile \`init.el\` and \`funcs.el\`.\n"
printf " 4. Download and byte compile \`essh.el\`.\n"
printf " 5. Download and byte compile \`electric-spacing-r.el\`.\n"
printf " 6. Download \`bookmark+\`.\n"
printf " 7. Open \`init.el\` and \`funcs.el\` with Meld.\n"
printf " 8. List of things to do when open GNU Emacs the first time.\n"
printf " q. Quit.\n\n"
read -sn1 -p "Select (1, 2, 3, 4, 5, 6, 7, 8, q): " input
echo
case $input in
1) installEmacs ;;
2) installPackages ;;
3) createEmacsFiles ;;
4) createEssh ;;
5) moveElectricSpacing ;;
6) createBookmark ;;
7) callMeld ;;
8) echo "$REMEMBER" ;;
q) break ;;
*) echo "Invalid option!" ;;
esac
done
#----------------------------------------------------------------------
# End of session.
cat << EOF
------------------------------------------------------------------------
You have finished the installation of GNU Emacs. Congratulations!
------------------------------------------------------------------------
EOF