Today I needed to have the latest version of HTTrack installed to make a (static) mirror of a website that I managed
After a few attempts, this is how you compile & install HTTrack from source on Ubuntu :
wget "http://download.httrack.com/cserv.php3?File=httrack.tar.gz"
mv cserv.php3\?File\=httrack.tar.gz httrack.tar.gz
tar xzvf httrack.tar.gz
cd httrack-3.49.2/
### the following is the key to a successful install
apt-get install zlib1g-dev libssl-dev build-essential
./configure && make && make install