How to install PCPMer:
---------------------
Method 1:

tar xzf pcpmer-3.5.5.tar.gz
cd pcpmer-3.5.5
./autogen.sh --prefix=/WHERE/TO/PUT/YOUR/INSTALLATION
make
make install
export PATH=$PATH:/WHERE/TO/PUT/YOUR/INSTALLATION

===========================================================
Method 2:
You can also intall PCPMER using following method:

tar xzf pcpmer-3.5.5.tar.gz
cd pcpmer-3.5.5
./configure
make 
make install
export PATH=$PATH:/WHERE/TO/PUT/YOUR/INSTALLATION
============================================================
If you will get a error message 

Package glib was not found in the pkg-config search path.
Perhaps you should add the directory containing `glib.pc'
to the PKG_CONFIG_PATH environment variable
No package 'glib' found
In file included from conf.c:1:
conf.h:6:18: error: glib.h: No such file or directory


Then Modify the Make file and replace following lines

line 107 CFLAGS = -O2 -Wall `pkg-config --cflags glib-2.0`
by  CFLAGS = -O2 -Wall `pkg-config --cflags glib-2.0`

Line 123: LIBS = `pkg-config --libs glib`
by        LIBS = `pkg-config --libs glib-2.0`

now run
make
make install
export PATH=$PATH:/WHERE/TO/PUT/YOUR/INSTALLATION

