This repository was archived by the owner on May 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathinstall_eclipse.sh
More file actions
executable file
·40 lines (30 loc) · 1.64 KB
/
install_eclipse.sh
File metadata and controls
executable file
·40 lines (30 loc) · 1.64 KB
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
#! /bin/bash
set -x
if [ ! -f eclipse/eclipse ] ; then
if [ ! -f eclipse-platform-4.7.2-linux-gtk-x86_64.tar.gz ] ; then
wget --progress=dot:mega http://mirror.ibcp.fr/pub/eclipse//eclipse/downloads/drops4/R-4.10-201812060815/eclipse-platform-4.10-linux-gtk-x86_64.tar.gz
# wget --progress=dot:mega http://mirror.ibcp.fr/pub/eclipse//eclipse/downloads/drops4/R-4.6.3-201703010400/eclipse-platform-4.6.3-linux-gtk-x86_64.tar.gz
# wget http://mirror.ibcp.fr/pub/eclipse//eclipse/downloads/drops4/R-4.6.2-201611241400/eclipse-platform-4.6.2-linux-gtk-x86_64.tar.gz
# wget http://mirror.ibcp.fr/pub/eclipse//eclipse/downloads/drops4/R-4.5.2-201602121500/eclipse-platform-4.5.2-linux-gtk-x86_64.tar.gz
# wget http://mirror.ibcp.fr/pub/eclipse//eclipse/downloads/drops4/R-4.5.1-201509040015/eclipse-platform-4.5.1-linux-gtk-x86_64.tar.gz
# wget http://mirror.ibcp.fr/pub/eclipse//eclipse/downloads/drops4/R-4.4.2-201502041700/eclipse-platform-4.4.2-linux-gtk-x86_64.tar.gz
fi
tar xzf eclipse-platform-*-linux-gtk-x86_64.tar.gz
rm eclipse-platform-*-linux-gtk-x86_64.tar.gz
fi
cd eclipse
# cleanup install
./eclipse \
-clean -purgeHistory \
-application org.eclipse.equinox.p2.director \
-noSplash \
-uninstallIUs fr.lip6.move.gal.feature.pnmcc.feature.group
# install
./eclipse \
-clean -purgeHistory \
-application org.eclipse.equinox.p2.director \
-noSplash \
-repository http://yanntm.github.io/Xtext-Light/,https://lip6.github.io/ITSTools \
-installIUs fr.lip6.move.gal.feature.pnmcc.feature.group
# http://yanntm.github.io/Xtext-Light/
#-repository http://download.eclipse.org/releases/neon,https://lip6.github.io/ITSTools \