[CMake] Install on Ubuntu

2013-02-20 Thread Alain Aupeix
Hi, I have Ubuntu 12.04, and I have already cmake installed (2.8.7) To compile the last version of Sigil, I need 2.8.9 or higher, so I tried to install it. Unfortunately, the sh file just allows to install directly under Downloads

Re: [CMake] Install on Ubuntu

2013-02-20 Thread Jean-Christophe Fillion-Robin
Hi Alain, Instead, in a terminal you could simply do the following: cd mkdir Support cd Support \ wget http://www.cmake.org/files/v2.8/cmake-2.8.10.2-Linux-i386.tar.gz \ tar -xzvf cmake-2.8.10.2-Linux-i386.tar.gz \ ./cmake-2.8.10.2-Linux-i386/bin/cmake -version This will create a

Re: [CMake] Install on Ubuntu

2013-02-20 Thread Alain Aupeix
Le 20/02/2013 21:35, Jean-Christophe Fillion-Robin a crit: Hi Alain, Instead, in a terminal you could simply do the following: cd mkdir Support cd Support \

Re: [CMake] Install on Ubuntu

2013-02-20 Thread Jean-Christophe Fillion-Robin
Hi, /usr/local/bin being before /usr/bin in the path, the cmake located locate there will be used. See also: http://unix.stackexchange.com/questions/8656/usr-bin-vs-usr-local-bin-on-linux The use of which can also be helpful. See http://unixhelp.ed.ac.uk/CGI/man-cgi?which Hth Jc On Wed,

Re: [CMake] Install on Ubuntu

2013-02-20 Thread Eric Noulard
2013/2/20 Alain Aupeix alain.aup...@wanadoo.fr: Le 20/02/2013 21:35, Jean-Christophe Fillion-Robin a écrit : Hi Alain, Instead, in a terminal you could simply do the following: cd mkdir Support cd Support \ wget http://www.cmake.org/files/v2.8/cmake-2.8.10.2-Linux-i386.tar.gz \ tar