diff options
author | Sven Gothel <[email protected]> | 2010-06-11 00:13:03 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-06-11 00:13:03 +0200 |
commit | 856a6e9ff524692bb4e2ac7b2f754bc7fee5f849 (patch) | |
tree | 2c7f1a0d83daa51fd8bb41021f0e0f8db8fd68d4 /tools/jackpotc/setup | |
parent | 302f183c4a659be9cedb5b6993ff78e7379d9cad (diff) | |
parent | a2b89550a73adb8e103d13daf48abc2e37fcdedf (diff) |
Merge branch 'master' of github.com:mbien/jogl
Diffstat (limited to 'tools/jackpotc/setup')
-rwxr-xr-x | tools/jackpotc/setup | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/tools/jackpotc/setup b/tools/jackpotc/setup index c68e5a9b9..58731b72d 100755 --- a/tools/jackpotc/setup +++ b/tools/jackpotc/setup @@ -1,20 +1,27 @@ #!/bin/bash +rm -Rf lib mkdir lib cd ./lib + +echo "downloading Jackpot..." wget http://bitbucket.org/jlahoda/jackpot30/downloads/jackpotc.zip unzip -oj jackpotc.zip cd ../test +rm -Rf oldgears/lib mkdir oldgears/lib mkdir oldgears/lib/new mkdir oldgears/lib/old -cd oldgears/lib/new -#TOCO temporary location -wget http://people.fh-landshut.de/~mbien/jogamp/ref/new/jogl.all.jar -wget http://people.fh-landshut.de/~mbien/jogamp/ref/new/jogl.awt.jar -wget http://people.fh-landshut.de/~mbien/jogamp/ref/new/gluegen-rt.jar +cd oldgears/lib/new +echo "downloading JOGL 2..." +wget http://jogamp.org/deployment/jogl-next/jogl.all.jar +wget http://jogamp.org/deployment/jogl-next/jogl.awt.jar +wget http://jogamp.org/deployment/jogl-next/gluegen-rt.jar cd ../old -wget http://people.fh-landshut.de/~mbien/jogamp/ref/old/jogl.jar -wget http://people.fh-landshut.de/~mbien/jogamp/ref/old/gluegen-rt.jar +echo "downloading old JOGL 1.1.1 build..." +wget http://jogamp.org/deployment/archive/jogl-old-1.1.1/jogl.jar +wget http://jogamp.org/deployment/archive/gluegen-old-1.0b6/gluegen-rt.jar + +echo "done" |