8
by Daniel Mark Watkins
Added Eclipse download script. |
1 |
#!/bin/sh
|
1.1.12
by Chris Lamb
Cleanup building, nice build script |
2 |
# Originally by Tim Retout <tim@retout.co.uk>
|
3 |
# Modified by Chris Lamb <chris@chris-lamb.co.uk>
|
|
4 |
# TODO: Subclipse
|
|
5 |
||
6 |
mkdir -p /var/tmp/$USER/
|
|
7 |
cd /var/tmp/$USER/ |
|
8 |
rm -f /var/tmp/$USER/eclipse-SDK*.tar.gz*
|
|
9 |
||
10 |
echo "Downloading Eclipse..." |
|
11 |
wget --quiet http://bong.uwcs.co.uk/eclipse/eclipse-SDK-3.2.1-linux-gtk.tar.gz |
|
12 |
||
13 |
echo "Extracting..." |
|
8
by Daniel Mark Watkins
Added Eclipse download script. |
14 |
tar xzf eclipse-SDK-3.2.1-linux-gtk.tar.gz |
15 |
||
1.1.12
by Chris Lamb
Cleanup building, nice build script |
16 |
echo "You can hopefully now run Eclipse with" |
17 |
echo "/var/tmp/$USER/eclipse/eclipse" |