C library for finding and handling crystal symmetries
% aclocal
% autoheader
% libtoolize # or glibtoolize with macport etc
% touch INSTALL NEWS README AUTHORS
% automake -acf
% autoconf
% ./configure
% 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