There are very few hard dependencies, currently:
Go to the https://sourceforge.net/projects/libeegtools/files/ and get a copy of LibEEGTools.
Unpack it with
tar xvfz libeegtools-<ver>.tar.gz
and use the configure script to generate make files
./configure <options>
such that you can
make install
the package (you might need root-priviledges to install the library).
Use
./configure --help
for a list of options.
You can enable some functionality by providing other software dependencies.
enables access to MATLAB and EEGLab files. This is strongly encouraged to enable direct cooperation with EEGlab.
enable some unit testing
You can append some flags to the ./configure call to modify the installation behaviour.
--prefix=<path> - provide the installation directory --enable-debug - you can get _a lot_ of debugging output --enable-matlab --enable-unittest
cvs -d:pserver:anonymous@libeegtools.cvs.sourceforge.net:/cvsroot/libeegtools login cvs -z3 -d:pserver:anonymous@libeegtools.cvs.sourceforge.net:/cvsroot/libeegtools co -P libeegtools
autoreconf --force --install
./configure --enable-debug make make install