C library for finding and handling crystal symmetries
% mkdir _build
% cd _build
% cmake ..
% make
% make install (probably installed under /usr/local)
Or to install under /some/where
% mkdir _build
% cd _build
% cmake -DCMAKE_INSTALL_PREFIX="" ..
% make
% make DESTDIR=/some/where install
A simple test is executed by
% make check
Autotools support is deprecated in the next major release.
% aclocal
% autoheader
% libtoolize # or glibtoolize with macport etc
% touch INSTALL NEWS README AUTHORS
% automake -acf
% autoconf
% ./configure