R. J. Dev. Kwan eb05416991 Initial commit of "Rocket Workbench".
Taken from sources in CVS at:
    https://sourceforge.net/projects/rocketworkbench/

Sources extracted in two steps:
1. Pull entire project tree into a subdir "rwb" via "rsync":
    rsync -a a.cvs.sourceforge.net::cvsroot/rocketworkbench/ rwb/.
2. Export sources:
    export CVSROOT=$(pwd)/rwb
    SUBDIRS="analyser cpropep cpropep-web CVSROOT data libcompat libcpropep libnum libsimulation libthermo prop rocketworkbench rockflight"
    mkdir rwbx; cd rwbx
    cvs export -D now ${SUBDIRS}

After this (and some backups for safety), the directory content was
added to a Git repo:
    git init .
    git add *
2021-01-20 15:50:36 -08:00

48 lines
1.4 KiB
Python

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