diff options
Diffstat (limited to 'test/TestEclipse_JarInJar/make-jarinjar.sh')
-rw-r--r-- | test/TestEclipse_JarInJar/make-jarinjar.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/TestEclipse_JarInJar/make-jarinjar.sh b/test/TestEclipse_JarInJar/make-jarinjar.sh new file mode 100644 index 0000000..53239a4 --- /dev/null +++ b/test/TestEclipse_JarInJar/make-jarinjar.sh @@ -0,0 +1,21 @@ +THISDIR=`pwd` +GLUEGEN=$THISDIR/../../../gluegen +JOGL=$THISDIR/../../../jogl + +bdir=build-x86_64 + +rm -rf tmp +mkdir tmp + +cd tmp +unzip $THISDIR/lala02.orig.jar + +cp -av $GLUEGEN/$bdir/gluegen-rt.jar . +cp -av $GLUEGEN/$bdir/gluegen-rt-natives-linux-amd64.jar . +cp -av $JOGL/$bdir/jar/jogl-all.jar . +cp -av $JOGL/$bdir/jar/jogl-all-natives-linux-amd64.jar . + +jar cmf META-INF/MANIFEST.MF ../lala02.jar *jar *class org +cd .. + +rm -rf tmp |