Basic Installation
==================

# Build requirements:
# - libtool
# - libdatrie development package (or https://github.com/tlwg/libdatrie)
# - doxygen (optional, for documentation generation)
# - autoconf-archive (for Git snapshot, for 'configure' script generation)

# When downloaded from the Github repo (Skip for released tarballs)
./autogen.sh

./configure
# Or to install elsewhere: ./configure --prefix=...

make

# Recommended
make check

# With elevated permissions if required
make install

# In order to uninstall
make uninstall

