wiki:ChimeraDebianDependencies

Version 3 (modified by Darren Weber, 15 years ago) ( diff )

--

Chimera Build Dependencies

This is one of several pages about features for Chimera development.

Ubuntu 10.10

This is a bash script that may be useful for installation of Ubuntu (10.10) packages required to build Chimera.

#!/bin/bash

# --- Build tools (some are optional for Chimera builds)

# https://help.ubuntu.com/community/InstallingCompilers

sudo apt-get install manpages-dev
sudo apt-get install binutils
sudo apt-get install build-essential
sudo apt-get install libtool libtool-doc
sudo apt-get install libltdl-dev
sudo apt-get install automake autoconf autoconf-doc
sudo apt-get install make make-doc
sudo apt-get install cpp gcc gccxml gcc-doc
sudo apt-get install g++ libstdc++6 libstdc++6-4.4-dbg
sudo apt-get install gdb gdb-doc
sudo apt-get install gfortran gfortran-doc
sudo apt-get install gobjc gobjc++

sudo apt-get install byacc
sudo apt-get install bison bison-doc
sudo apt-get install flex flex-doc

# --- OpenGL

# OpenGL Utility Toolkit (GLUT)
sudo apt-get install libglut3 libglut3-dev
# OpenGL utility library (GLU) 
sudo apt-get install libglu1-mesa libglu1-mesa-dev 

# --- X dependencies

# X11 input extension library  
sudo apt-get install libxi6 libxi-dev libxi6-dbg 
# X11 miscellaneous utility library
sudo apt-get install libxmu-dev libxmu6-dbg libxmuu-dev libxmuu1-dbg
# X11 pixmap library
sudo apt-get install libxpm4-dbg libxpm-dev xpmutils


# Extras

sudo apt-get install cmake cmake-data
sudo apt-get install cmake-curses-gui cmake-qt-gui

# A GLUT-based C++ user interface library 
sudo apt-get install libglui-dev

# python-readline requires libncurses
sudo apt-get install ncurses-base ncurses-bin ncurses-term
sudo apt-get install libncurses5-dev libncurses5-dbg 
sudo apt-get install libncursesw5-dev libncursesw5-dbg 
Note: See TracWiki for help on using the wiki.