Installation should be the same fairly straight-forward matter of
running "./configure && make && make install" common to most
autoconf-generated packages.  Unfortunately, on the first
installation, there are still a few steps that have to be performed at
an elevated privilege level.

You'll need to create and give yourself write access to station-info
directories in the web server's cgi-bin and html directories; to
create and give yourself write access to /usr/local/bin and
/usr/local/share/station-info; and to create a plot directory in the
html/station-info directory and give the web server write permission
to this plot directory.

Assuming a default apache web server installation, running the
following commands as root should do the trick:

    mkdir /usr/local/bin
    chown $USER:$USER /usr/local/bin

    mkdir /usr/local/share/station-info
    chown $USER:$USER /usr/local/share/station-info

    mkdir /var/www/cgi-bin/station-info
    chown $USER:$USER /var/www/cgi-bin/station-info

    mkdir /var/www/html/station-info
    chown $USER:$USER /var/www/html/station-info

    mkdir -m 775 /var/www/html/station-info/plot
    chown $USER:apache /var/www/html/station-info/plot

If you've modified your web server installation, you'll have to modify
the webhome and webuser variables in the web/Makefile.am file to
correspond to the web server's root directory and the user that the
web server runs as.
