|
First download the csoftadm.fcgi sources into some temporary directory under your
$HOME, such as ~/src/csoftadm.
At this time, we are not making numbered csoftadm.fcgi releases, so the source
is only available via Subversion:
$ mkdir ~/src
$ cd ~/src
$ svn co http://dev.hypertriton.com/openmgi/trunk/cgi csoftadm.fcgi
Execute ./configure to prepare for compilation, and specify the
directory in which you want csoftadm.fcgi installed, using --prefix.
$ cd csoftadm.fcgi
$ ./configure --prefix=$HOME/www/mycsoftadm --with-html-source
Tip: If you omit --with-html-source, the HTML sources/templates and
all other files which are needed to re-generate your HTML files will not
be installed. This reduces the number of files, but you will need to edit
your HTML templates and sources from csoftadm.fcgi's source directory
instead.
When the configure script finishes, you are ready to build and install:
$ make all depend install
At this point you can delete ~/src/csoftadm.fcgi. If you inspect
$HOME/www/mycsoftadm, you should see the csoftadm.fcgi binary.
|