Based on the original Rocket Workbench on SourceForge in CVS at: https://sourceforge.net/projects/rocketworkbench
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.4 KiB

  1. Building Rocketworkbench (20011016)
  2. ====================================
  3. These build instructions were written by Geoff O'Callaghan for building the
  4. Debian package for rocketworkbench. They are generic enough to be useful
  5. on just about any Unix/Linux system. They are brief!
  6. 1. Getting the source.... If you're reading this then you've probably
  7. already got the source code. If you're reading this and you don't have the
  8. source code then hey don't worry :-)
  9. For anonymous readonly access
  10. export CVSROOT=:pserver:anonymous@cvs.rocketworkbench.sourceforge.net:/cvsroot/rocketworkbench
  11. cvs login
  12. Password is 'null' - ie. just hit enter
  13. cvs -z6 -q co rocketworkbench
  14. 2. Compiling the source
  15. Rocketworkbench relies on a library called GPCP. This is a separate
  16. development by Antoine and his brother. In order to compile rocketworkbench
  17. you'll need to obtain the GPCP library and place it in the
  18. sources/libraries directory.
  19. <need a download location for gpcp!>
  20. ie.
  21. cd rocketworkbench/sources/libraries
  22. tar zxvf gpcp.tgz
  23. will create a gpcp directory and rocketworkbench is already configured to
  24. build using GPCP in this location.
  25. In order to compile cpropep-web and lrd-web you will also require cgilib.
  26. cgilib can be obtained on Debian systems using:
  27. apt-get install cgilib
  28. Once all thats done. Just type in 'make' in the rocketworkbench directory and
  29. it should ALL HAPPEN.