Celestia still doesn't have binaries for 19.10
The other option is to build from source.
I've downloaded the source of 1.6.2-beta2 from github.
Installed needed packages written here. plus gettext said here. so the needed packages was:
sudo apt install qtbase5-dev-tools qtbase5-dev libqt5opengl5-dev qtchooser libglu1-mesa-dev libpng-dev libjpeg-dev libtheora-dev liblua5.3-dev build-essential gettext
the INSTALL says how to build. while desktop of Ubuntu is gnome we need this instructions (maybe you need to do autoreconf --install
before starting the first line.):
autoreconf -f
./configure --with-gnome #says --with-INTERFACE
make
make install
the first line done successfully. but in configure step. we face the needed packages:
No package 'libgnomeui-2.0' found
No package 'gtk+-2.0' found
No package 'gtkglext-1.0' found
but I do not know how to install these packages. I can not find them. How can I install these packages and finalize installation of Celesta?