Today I had to deal with packaging GEOtop for Debian based distro. Obviously, after having created the package, I tested it on an Ubuntu 14.04 Virtual Machine.
Well, after a simple double click on the package, trying to install it, I got the WARNING shown in figure
What??? I had just typed cpack
on terminal to generate the package, what was wrong?
Well, the problem is a bug in the version 3.3.1 of CMake
, which has been already fixed in the master branch of the official git repository. You can get the source code through
Once building it, I got no more problems.
Oh, I was forgetting a very important thing: if you want to get a working cmake-curses-gui
you have to install the libncurses-dev
library and then run ./bootstrap
with --qt-gui
option (so libqt4
is required as well).
That’s all. GWH!!!