Download this:
http://curlpp.googlecode.com/files/curlpp-0.7.2.tar.gz
Then, in the terminal, navigate to where you downloaded that file (if you're unfamiliar with the terminal, the command
ls will LiSt the contents of the current directory,
cd will Change Directories, and
pwd will Print the Working Directory (show what directory you're in). Execute these commands when you get there:
tar -xvvf curlpp-0.7.2.tar.gz
cd curlpp-0.7.2
./configure
If at the end of that last command, if you get errors, then attempt to install the packages that it mentions as missing (via
sudo apt-get install <package-name>) Then run again. Do this until all errors are gone. If the errors persist and you don't know what to do, just post the errors here. When that command is successful, run these commands:
make
sudo make install
After this, you should have the files installed correctly, and ready to be used. Post back if you encounter any problems.
Good luck!