Guest User

Untitled

a guest
Apr 19th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. sudo apt-get install celestia celestia-gnome celestia-common-nonfree
  2.  
  3. UBUNTU_MIRROR=https://www.mirrorservice.org/sites/archive.ubuntu.com/ubuntu/pool/universe/c/celestia
  4.  
  5. # common
  6. sudo apt-get install liblua5.1-0
  7. wget "${UBUNTU_MIRROR}"/celestia-common_1.6.1+dfsg-3_all.deb
  8. sudo dpkg -i celestia-common_1.6.1+dfsg-3_all.deb
  9.  
  10. sudo apt-get install celestia-common-nonfree
  11.  
  12. # for celestia-glut
  13. wget "${UBUNTU_MIRROR}"/celestia-glut_1.6.1+dfsg-3_amd64.deb
  14. sudo apt-get install freeglut3
  15. sudo dpkg -i celestia-glut_1.6.1+dfsg-3_amd64.deb
  16.  
  17. # for celestia-gnome
  18. wget "${UBUNTU_MIRROR}"/celestia-gnome_1.6.1+dfsg-3_amd64.deb
  19. sudo apt-get install libgtkglext1 libgnome2-0 libgnomeui-0
  20. sudo dpkg -i celestia-gnome_1.6.1+dfsg-3_amd64.deb
  21.  
  22. sudo apt install qt4-dev-tools libqt4-dev
  23.  
  24. autoreconf -v -i # might need to run ? if configure fails
  25. ./configure --prefix=/usr --with-lua --with-qt --with-cspice-dir=/YourInstallLocation/NGT/cspice
  26.  
  27. make
  28. sudo make install
  29.  
  30. celestia
Add Comment
Please, Sign In to add comment