Skip to content

Commit

Permalink
Add debian-prepare.sh for installing prereqs
Browse files Browse the repository at this point in the history
Works for Debian and Ubuntu, though not
all versions will have all packages.
  • Loading branch information
dnikulin committed Oct 27, 2011
1 parent 7f84921 commit d0172e1
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions debian-prepare.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/bin/bash -e

# Start by getting aptitude,
# which has far better dependency handling than apt-get.
apt-get install aptitude

# Get several development tools and libraries.
aptitude -PvVR install \
build-essential \
libjpeg-dev \
libpng-dev \
libtiff-dev \
liblapack-dev \
libv4l-dev \
mesa-common-dev \
libgl1-mesa-dev \
libglu1-mesa-dev \
mesa-utils \
freeglut3-dev \
ffmpeg \
libffms2-dev \
libavcodec-dev \
libavdevice-dev \
libavfilter-dev \
libavformat-dev \
libdc1394-22-dev \

0 comments on commit d0172e1

Please sign in to comment.