  if building from tarball;

get tarball from http://code.google.com/p/eper/downloads/list

$ tar -xzf ~etxmacr/eper-N.nn.tar.gz 
$ cd eper-N.nn/
$ ./configure  --prefix=<some nice place>
$ make
$ make install


  if building from github (using rebar);

$ git clone git://github.com/massemanet/eper.git
$ cd eper 
$ make

  or using autotools;

$ aclocal ; autoconf ; automake
$ ./configure --prefix=<some nice place>
$ make
$ make install

  you'll need autoconf 2.59c or higher, and automake 1.9.5 or higher.

