Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 812 Bytes

INSTALL.md

File metadata and controls

40 lines (33 loc) · 812 Bytes

Installation

The following can be used to help install datetools into your environment. This tool is not currently compatible with Microsoft Windows.

Requirements

You will require the following in order for this to work correctly:

  • automake
  • autoconf
  • libtool
  • make
  • GNU C++ Compiler
  • boost
  • python v2.4+ (optional)

Build Procedure

The following will set a correct build environment

autogen.sh

If you dont want the python module (optionally over-ride the prefix):

./configure --prefix=`pwd` --without-python

Otherwise run the following:

# Configure the environment
./configure

# Compile the code
make

# Install the package into your system (as root)
# some distributions just allow you to prefix
# the below command with _sudo_
make install

You're done!