[ Contents | << Previous | Next >> ]


Perl Setup

Kalendus is written entirely in Perl. It makes use of several open source modules, available from CPAN (www.cpan.org).

DBI
Database independant interface to connect to SQL databases.

DBD::mysql
MySQL database driver for DBI.

Time::JulianDay, in Time-modules
Date calculations.

Your operating system may come with these modules (e.g. as Redhat or Debian packages).

Assumption

You have Perl 5 installed.

Module Installation

[system admin]

Download each module from CPAN.

Compile and install each according to the directions. For example:

	gunzip -c Time-modules-101.062101.tar.gz | tar -xvf -
	cd Time-modules-101.062101
	perl Makefile.PL
	make
	make test
	make install