| > I downloaded the source code
> (http://download.httrack.com/cserv.php3?File=httrack
> .tar.gz) but I do not know how I can compile or
> run. I see many files and I do not know how to run
> the program.
> I appreciate if I can give me some instruction on
> this issue.
./configure && make && make install
or, if to be installed in another directory,
./configure --prefix=/path/to/directory && make && make install
DESTDIR=/path/to/directory
| |