ctlseqs/INSTALL.org

1.6 KiB

Installation Guidelines

Copy Library Code to Your Project

This is the recommended way to use this library. Just copy ctlseqs.h and ctlseqs.c to your project and build it alongside with other code.

Requires an ISO C99 and POSIX.1-2008 compliant C implementation.

Build and Install From Source

Alternatively, You may want a systemwide installation of the library and link it to your project. Some scripts are provided to help you with that.

Requires GNU Autoconf, Automake, Libtool and Autoconf Archive.

  autoreconf --install
  ./configure --prefix=$HOME CFLAGS='-O0 -g'

Compile the library source code, as well as examples and test suites. Optionally, you can run the test suite (requires DejaGnu), install the binary and man pages.

  make && make check && make install

Finally, link it to your project with the -lctlseqs (or similar) flag.

Install From a Package Manager

We maintain unofficial repositories for a few package managers, so that the ctlseqs library can be installed from them.

However, there is no guarantee that any of those repositories will be actively maintained in the future.

Homebrew

  brew tap CismonX/repos
  brew install ctlseqs