Build
-----

Requirements (can also be satisfied via conda :doc:`stopeight`)::
    $ sudo apt-get install cmake build-essential qtbase5-dev python3-pip python3-pyqt5 python3-pybind11 python3-future

The stopeight repository contains stopeight-clibs::

    $ git clone https://github.com/specpose/stopeight.git
    $ cd /path/to/where/stopeight

If you prefer the latest development version of stopeight-clibs::

    $ rm -R stopeight-clibs
    $ git clone https://github.com/specpose/stopeight-clibs.git

Build and install stopeight-clibs::

    $ cd stopeight-clibs
    $ mkdir build && cd build
    $ cmake ../
    $ make && sudo make install

Note: You may need to manually reinstall after a rebuild::

    $ sudo cp libstopeight-clibs-* /path/to/where/your/syslibs
    $ sudo ldconfig

Build and install stopeight::

    $ cd /path/to/where/stopeight

Needed to create packaging version required for install::

    $ python setup.py sdist

Finally install::

    $ python setup.py install
