~gryle-devel/gryle/trunk-deleted

« back to all changes in this revision

Viewing changes to contrib/download_eclipse

  • Committer: Chris Lamb
  • Date: 2007-01-13 23:37:40 UTC
  • mto: (1.2.18 gryle)
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: csueaj@viglab-29-20070113233740-4h2ere24gxasebeh
Cleanup building, nice build script

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
 
 
3
 
cd /var/tmp
4
 
 
5
 
# Download
6
 
wget http://bong.uwcs.co.uk/eclipse/eclipse-SDK-3.2.1-linux-gtk.tar.gz
7
 
 
 
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
14
tar xzf eclipse-SDK-3.2.1-linux-gtk.tar.gz
9
15
 
10
 
# TODO: Subclipse
 
16
echo "You can hopefully now run Eclipse with"
 
17
echo "/var/tmp/$USER/eclipse/eclipse"