I've tried the way that was dictated, but it requires "autotools." I've installed autotools -- automake auto congiure ... but it still isn't working. the "./configure" command doesn't do anything.
Make appears to install, but when I tested the exmpp:start(). at the erl prompt nothing happened.
Blockquote Exmpp uses the Autotools. Therefore the process is quite common:
$ ./configure
$ make
$ sudo make install
Building outside of the source directory is supported:
$ mkdir exmpp-build
$ cd exmpp-build
exmpp-build$ /path/to/exmpp-src/configure
exmpp-build$ make
exmpp-build$ sudo make install
Blockquote
The above are the instructions in the exmpp package.