I have few issues when I tried the script in Ubuntu 16.0:
- The script needs curl and git to be installed
- The script didn't work at all.
- Error: Basic XLib functionality test failed! You might need to modify the include and library search path
I solved them by adding these lines to the script:
# download build install cmake and required librarires
sudo apt -y install curl subversion git git-svn libxext-dev
curl -# -OL https://cmake.org/files/v2.8/cmake-2.8.12.1.tar.gz
tar -xvzf cmake-2.8.12.1.tar.gz
./cmake-2.8.12.1/configure && make && make install
I have few issues when I tried the script in Ubuntu 16.0:
I solved them by adding these lines to the script: