In order to compile and install Kaspaliste on your system, type the following in the base directory of the Kaspaliste distribution:
%./configure %make %make install |
Since Kaspaliste uses autoconf you should have not trouble compiling it.
Kaspaliste needs postgresql as server. For installation details look at the postgresql documentation. You have to initialize the postgresql manager if you don't have already an existing postgresql installation. Parameters are the directory of the postgres installation (e.g. /usr/lib/pgsql or /usr/local/pgsql), the directory where the database should live (e.g. /home/xyz/pgdata) and the username. You can omit the parameters if the $USER, $PGLIB and $PGDATA environment variables are set.
%initdb --pglib=MY_PGSQL_LIBDIR --pgdata=MY_PGSQL_DATADIR --username=MY_USERNAME |
Start the postmaster (Read the postmaster manpage for a more sophisticated command line):
%postmaster -DMY_PGSQL_DATADIR |
First you have to create a database named kaspaliste:
%createdb kaspaliste |
Read the file kaspaliste/data/create.tables.sql from the kaspaliste directory with the command:
%psql kaspaliste -f create.tables.sql |
Now you are ready to start the frontend. Should you run into problems please report them to the author at Jan Mueller