Installing Aldor

Windows

Just download the installer and launch it. Alternatively, if you have Microsoft Windows Installer version 3.0 or higher (you probably do, if you have Windows XP SP 2 or higher), you can download and install the MS installer package.

To verify the installer and package, you can use their MD5 and SHA1 sums.

Linux

Installing pre-built packages

Debian users can simply add the Xinutec repository to their /etc/apt/sources.list:

   deb http://debian.xinutec.org/ etch main non-free

Currently, only Debian etch packages are provided. These should work with newer releases, though. Ubuntu users may also have luck with this package. To install, issue the following command as root:

   # apt-get install aldor

If you want the package signatures to be checked, you need to accept my key. The easiest way to do this is by installing the xinutec-archive-keyring package from my repository:

   # apt-get install xinutec-archive-keyring

Alternatively, you can manually add the key to the trusted keyring:

   # gpg --keyserver pgp.mit.edu --recv-keys 0x635D0E0A
   # gpg --armor --export 0x635D0E0A | apt-key add -

Installing from sources

This is currently disabled due to licence uncertainness.

Now you should have a directory at $HOME/aldor containing the Aldor compiler and libraries, include files, configuration files and internationalisation files.

You will need to set the ALDORROOT environment variable to the directory given as prefix. Usually, this is /usr/local.

If anything went wrong, don't hesitate to contact me.

Here is the entire script without the prompt (%):

   wget http://xinutec.org/~pippijn/en/aldor-1.1.0-1_agpl.tar.gz
   wget http://xinutec.org/~pippijn/en/aldor-1.1.0-1_apl.tar.gz
   gunzip -c aldor-1.1.0-1_agpl.tar.gz | tar x
   gunzip -c aldor-1.1.0-1_apl.tar.gz | tar x
   cd aldor-1.1.0-1
   ./configure --prefix=$HOME/aldor
   source setenv.sh
   make prepare -j4
   make compiler -j4
   make libraries3
   make install