Comment #5 on issue 36 by janne.t.harkonen: JAR distribution package
http://code.google.com/p/robotframework/issues/detail?id=36
I have managed to get a working robot.jar file, that can be executed like:
`java -jar robot.jar`
Steps are following:
1) Grab standalone Jython and unzip the jar to, say `robot-standalone`
2) Copy robot source files from `src` to `robot-standalone/Lib/robot`
(target dir mya have to created first)
3) Apply the patches to copied robot source files that are attached to
this issue
4) copy __run__.py, also attached to this issue, directly to
`robot-standalone`
5) Edit META-INF/MANIFEST and change `Main-Class: ` to
`org.python.util.JarRunner`
6) repack the jar `zip -r robot.jar .`