Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rmast/1c5cadafc03b3a7773bb353b054a5577 to your computer and use it in GitHub Desktop.
Save rmast/1c5cadafc03b3a7773bb353b054a5577 to your computer and use it in GitHub Desktop.
Install Gstreamer on Rasperry Pi

This gist contains several files to crosscompile gstreamer (on Raspbian) on a Raspberry Pi, with a root-share on an Ubuntu host via NFS. Before running the gstreamer.sh first run the separate git clone-script on the Ubuntu host on the directory the git's should be cloned as Git clone is very slow from the Pi.

All packages in the package-list (you can sudo apt-get install them) will prevend you from many compile-stops, but as time goes by new issues will arise.

Also you should first ./configure, make and install pcre1 as Raspbians pcre-version is too new.

#!/bin/bash --debugger
set -e
[ -n "$1" ] && BRANCH=$1
# Create a log file of the build as well as displaying the build on the tty as it runs
exec > >(tee build_gstreamer.log)
exec 2>&1
# get the repos if they're not already there
# as your raspberry-pi is slow run this script on the host-virtual machine containing the NFS-share of your pi-root
# so for example of your HOME-directory on the pi is /home/pi:
# cd /opt/raspberrypi/root/home/pi/src
# get repos if they are not there yet
[ ! -d gstreamer ] && git clone --recursive git://anongit.freedesktop.org/git/gstreamer/gstreamer
[ ! -d gst-plugins-base ] && git clone --recursive git://anongit.freedesktop.org/git/gstreamer/gst-plugins-base
[ ! -d gst-plugins-good ] && git clone --recursive git://anongit.freedesktop.org/git/gstreamer/gst-plugins-good
[ ! -d gst-plugins-bad ] && git clone --recursive git://anongit.freedesktop.org/git/gstreamer/gst-plugins-bad
[ ! -d gst-plugins-ugly ] && git clone --recursive git://anongit.freedesktop.org/git/gstreamer/gst-plugins-ugly
[ ! -d gst-libav ] && git clone --recursive git://anongit.freedesktop.org/git/gstreamer/gst-libav
[ ! -d gst-omx ] && git clone --recursive git://anongit.freedesktop.org/git/gstreamer/gst-omx
[ ! -d gst-python ] && git clone --recursive git://anongit.freedesktop.org/git/gstreamer/gst-python
[ ! -d gst-rpicamsrc ] && git clone --recursive https://github.com/thaytan/gst-rpicamsrc.git
[ ! -d libvpx ] && git clone --recursive https://chromium.googlesource.com/chromium/deps/libvpx
#!/bin/bash --debugger
set -e
# not yet tested, probably put back the || to the checkouts, but keep them local to the pi as the remote stuff is done in the separate script from the host.
# greatest assumed working branch as parameter: 1.9.1
[ -n "$1" ] && BRANCH=$1
# Create a log file of the build as well as displaying the build on the tty as it runs
exec > >(tee build_gstreamer.log)
exec 2>&1
# Update and Upgrade the Pi, otherwise the build may fail due to inconsistencies
grep -q BCM2708 /proc/cpuinfo || grep -q BCM2709 /proc/cpuinfo && sudo apt-get update && sudo apt-get upgrade -y --force-yes
# Get the required libraries
sudo apt-get install -y --force-yes build-essential autotools-dev automake autoconf \
libtool autopoint libxml2-dev zlib1g-dev libglib2.0-dev \
pkg-config bison flex python3 git gtk-doc-tools libasound2-dev \
libgudev-1.0-dev libxt-dev libvorbis-dev libcdparanoia-dev \
libpango1.0-dev libtheora-dev libvisual-0.4-dev iso-codes \
libgtk-3-dev libraw1394-dev libiec61883-dev libavc1394-dev \
libv4l-dev libcairo2-dev libcaca-dev libspeex-dev libpng-dev \
libshout3-dev libjpeg-dev libaa1-dev libflac-dev libdv4-dev \
libtag1-dev libwavpack-dev libpulse-dev libsoup2.4-dev libbz2-dev \
libcdaudio-dev libdc1394-22-dev ladspa-sdk libass-dev \
libcurl4-gnutls-dev libdca-dev libdirac-dev libdvdnav-dev \
libexempi-dev libexif-dev libfaad-dev libgme-dev libgsm1-dev \
libiptcdata0-dev libkate-dev libmimic-dev libmms-dev \
libmodplug-dev libmpcdec-dev libofa0-dev libopus-dev \
librsvg2-dev librtmp-dev libschroedinger-dev libslv2-dev \
libsndfile1-dev libsoundtouch-dev libspandsp-dev libx11-dev \
libxvidcore-dev libzbar-dev libzvbi-dev liba52-0.7.4-dev \
libcdio-dev libdvdread-dev libmad0-dev libmp3lame-dev \
libmpeg2-4-dev libopencore-amrnb-dev libopencore-amrwb-dev \
libsidplay1-dev libtwolame-dev libx264-dev libusb-1.0 \
python-gi-dev yasm python3-dev libgirepository1.0-dev \
libegl1-mesa-dev libgles2-mesa-dev \
libmjpegtools-dev mjpegtools python-gobject-dev \
libmpg123-0 mpg123 libmpg123-dev \
libvo-aacenc-dev libvo-aacenc0 \
libwayland-egl1-mesa
# Not in OSMC openssl-dev
# get the repos if they're not already there
cd $HOME
[ ! -d src ] && mkdir src
cd src
# get repos if they are not there yet
#[ ! -d gstreamer ] && git clone https://github.com/GStreamer/gstreamer
#[ ! -d gst-plugins-base ] && git clone https://github.com/GStreamer/gst-plugins-base
#[ ! -d gst-plugins-good ] && git clone https://github.com/GStreamer/gst-plugins-good
#[ ! -d gst-plugins-bad ] && git clone https://github.com/GStreamer/gst-plugins-bad
#[ ! -d gst-plugins-ugly ] && git clone https://github.com/GStreamer/gst-plugins-ugly
#[ ! -d gst-libav ] && git clone https://github.com/GStreamer/gst-libav
#[ ! -d gst-omx ] && git clone https://github.com/GStreamer/gst-omx
#[ ! -d gst-python ] && git clone https://github.com/GStreamer/gst-python
#[ ! -d gst-rpicamsrc ] && git clone https://github.com/thaytan/gst-rpicamsrc.git
#[ ! -d libvpx ] && git clone https://chromium.googlesource.com/webm/libvpx
# VPX support
cd libvpx
# as armv6 is skipped from the newer Git just use v1.5.0
git checkout v1.5.0
#sudo make uninstall || true
#git pull
./configure
make -j4
sudo make install
cd ..
#Gstreamer
export LD_LIBRARY_PATH=/usr/local/lib/
cd gstreamer
git checkout $BRANCH
sudo make uninstall || true
#git pull
./autogen.sh --disable-gtk-doc
make -j4
sudo make install
cd ..
# Gstreamer Plugins Base
cd gst-plugins-base
git checkout $BRANCH
sudo make uninstall || true
#git pull
./autogen.sh --disable-gtk-doc
make -j4
sudo make install
cd ..
# Gstreamer Plugins Good
cd gst-plugins-good
git checkout $BRANCH
sudo make uninstall || true
#git pull
./autogen.sh --disable-gtk-doc
make -j4
sudo make install
cd ..
# Gstreamer Plugins Ugly
cd gst-plugins-ugly
git checkout $BRANCH
sudo make uninstall || true
#git pull
./autogen.sh --disable-gtk-doc
make -j4
sudo make install
cd ..
# Gstreamer Libav
cd gst-libav
git checkout $BRANCH
sudo make uninstall || true
#git pull
./autogen.sh --disable-gtk-doc
make -j4
sudo make install
cd ..
# Gstreamer Plugins Bad
cd gst-plugins-bad
git checkout $BRANCH
sudo make uninstall || true
#git pull
export LDFLAGS='-L/opt/vc/lib' \
CFLAGS='-I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux' \
CPPFLAGS='-I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux'
./autogen.sh --disable-gtk-doc --disable-examples --disable-x11 --disable-glx --disable-glx --disable-opengl
make -j4 CFLAGS+="-Wno-error -Wno-redundant-decls -I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux" \
CPPFLAGS+="-Wno-error -Wno-redundant-decls -I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux" \
CXXFLAGS+="-Wno-redundant-decls" LDFLAGS+="-L/opt/vc/lib"
sudo make install
cd ..
# Python bindings
cd gst-python
git checkout $BRANCH
sudo make uninstall || true
#git pull
PYTHON=/usr/bin/python3 ./autogen.sh
make -j4
sudo make install
cd ..
# OMX support
cd gst-omx
git checkout $BRANCH
sudo make uninstall || true
#git pull
export LDFLAGS='-L/opt/vc/lib' \
CFLAGS='-I/opt/vc/include -I/opt/vc/include/IL -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux -I/opt/vc/include/IL' \
CPPFLAGS='-I/opt/vc/include -I/opt/vc/include/IL -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux -I/opt/vc/include/IL'
./autogen.sh --disable-gtk-doc --with-omx-target=rpi
# fix for glcontext errors and openexr redundant declarations
make -j4 CFLAGS+="-Wno-error -Wno-redundant-decls" LDFLAGS+="-L/opt/vc/lib"
sudo make install
cd ..
# Gstreamer Raspberry Pi Camera Wrapper
cd gst-rpicamsrc
sudo make uninstall || true
#git pull
./autogen.sh --prefix=/usr --libdir=/usr/lib/arm-linux-gnueabihf/
sudo make -j4
sudo make install
cd ..
adwaita-icon-theme
alsa-base
at-spi2-core
autoconf
automake
autopoint
autotools-dev
binfmt-support
bison
bzip2-doc
colord
colord-data
curl
dconf-gsettings-backend:armhf
dconf-service
debhelper
dh-python
distcc
dmsetup
docbook
docbook-dsssl
docbook-to-man
docbook-xml
docbook-xsl
dpkg
dpkg-dev
firmware-atheros
firmware-brcm80211
firmware-libertas
firmware-ralink
firmware-realtek
flex
fontconfig
fontconfig-config
fonts-dejavu-core
fonts-droid
freeglut3:armhf
freeglut3-dev:armhf
freepats
gettext
gettext-base
ghc
ghostscript
gir1.2-atk-1.0
gir1.2-atspi-2.0
gir1.2-freedesktop:armhf
gir1.2-gdkpixbuf-2.0
gir1.2-glib-2.0:armhf
gir1.2-gst-plugins-base-1.0
gir1.2-gstreamer-1.0
gir1.2-gtk-2.0
gir1.2-gtk-3.0:armhf
gir1.2-gudev-1.0
gir1.2-pango-1.0:armhf
gir1.2-rsvg-2.0:armhf
gir1.2-soup-2.4
git
git-man
glib-networking:armhf
glib-networking-common
glib-networking-services
gnome-common
gnupg
gobject-introspection
gpgv
gsettings-desktop-schemas
gsfonts
gstreamer1.0-alsa:armhf
gstreamer1.0-libav:armhf
gstreamer1.0-omx
gstreamer1.0-plugins-bad:armhf
gstreamer1.0-plugins-base:armhf
gstreamer1.0-plugins-good:armhf
gstreamer1.0-pulseaudio:armhf
gstreamer1.0-x:armhf
gtk-doc-tools
hicolor-icon-theme
highlight
highlight-common
imagemagick-common
initramfs-tools
intltool
intltool-debian
jade
javascript-common
ladspa-sdk
liba52-0.7.4
liba52-0.7.4-dev
libaa1:armhf
libaa1-dev
libasound2-dev:armhf
libasprintf0c2:armhf
libasprintf-dev:armhf
libass5:armhf
libass-dev:armhf
libassimp3
libassimp-dev
libasyncns0:armhf
libatk1.0-0:armhf
libatk1.0-data
libatk1.0-dev
libatk-bridge2.0-0:armhf
libatk-bridge2.0-dev:armhf
libatspi2.0-0:armhf
libatspi2.0-dev
libauthen-sasl-perl
libavahi-client3:armhf
libavahi-client-dev
libavahi-common-dev
libavc1394-0:armhf
libavc1394-dev:armhf
libavcodec56:armhf
libavcodec-dev
libavformat56:armhf
libavformat-dev
libavresample2:armhf
libavresample-dev
libavutil54:armhf
libavutil-dev
libbison-dev:armhf
libboost1.55-dev:armhf
libboost-filesystem1.55.0:armhf
libboost-filesystem1.55-dev:armhf
libboost-filesystem-dev:armhf
libboost-system1.55.0:armhf
libboost-system1.55-dev:armhf
libbsd-dev:armhf
libbz2-dev:armhf
libcaca0:armhf
libcaca-dev
libcairo2:armhf
libcairo2-dev
libcairo-gobject2:armhf
libcairo-script-interpreter2:armhf
libcdaudio1
libcdaudio-dev
libcdio13
libcdio-dev
libcdparanoia0:armhf
libcdparanoia-dev:armhf
libcdt5
libcgraph6
libchromaprint0:armhf
libcolord2:armhf
libcolorhug2:armhf
libcroco3:armhf
libcups2:armhf
libcupsfilters1:armhf
libcupsimage2:armhf
libcurl3:armhf
libcurl3-gnutls:armhf
libcurl4-gnutls-dev:armhf
libcvaux-dev:armhf
libcv-dev:armhf
libdatrie1:armhf
libdbus-1-dev:armhf
libdbus-glib-1-2:armhf
libdbus-glib-1-dev
libdc1394-22:armhf
libdc1394-22-dev:armhf
libdca0:armhf
libdca-dev:armhf
libdconf1:armhf
libdevmapper1.02.1:armhf
libdirac-decoder0:armhf
libdirac-dev:armhf
libdirac-encoder0:armhf
libdirectfb-1.2-9:armhf
libdjvulibre21:armhf
libdjvulibre-dev:armhf
libdjvulibre-text
libdpkg-perl
libdrm-amdgpu1:armhf
libdrm-dev:armhf
libdrm-exynos1:armhf
libdrm-freedreno1:armhf
libdrm-nouveau2:armhf
libdrm-omap1:armhf
libdrm-radeon1:armhf
libdrm-tegra0:armhf
libdv4:armhf
libdv4-dev:armhf
libdvdnav4:armhf
libdvdnav-dev:armhf
libdvdread4:armhf
libdvdread-dev:armhf
libegl1-mesa:armhf
libegl1-mesa-dev:armhf
libelf1:armhf
libelfg0:armhf
libenca0:armhf
libenca-dev
libencode-locale-perl
liberror-perl
libexempi3:armhf
libexempi-dev:armhf
libexif12:armhf
libexif-dev
libexpat1:armhf
libexpat1-dev:armhf
libfaad2:armhf
libfaad-dev:armhf
libffi-dev:armhf
libfftw3-bin
libfftw3-dev:armhf
libfftw3-double3:armhf
libfftw3-single3:armhf
libfile-copy-recursive-perl
libfile-listing-perl
libflac8:armhf
libflac-dev:armhf
libfl-dev:armhf
libflite1:armhf
libfluidsynth1:armhf
libfont-afm-perl
libfontconfig1:armhf
libfontconfig1-dev:armhf
libfreeimage3
libfreeimage-dev
libfribidi0:armhf
libfribidi-dev
libgbm1:armhf
libgcrypt20:armhf
libgd3:armhf
libgdk-pixbuf2.0-0:armhf
libgdk-pixbuf2.0-common
libgdk-pixbuf2.0-dev
libgettextpo0:armhf
libgettextpo-dev:armhf
libghc-mtl-dev
libghc-regex-base-dev
libghc-transformers-dev
libgirepository-1.0-1:armhf
libgl1-mesa-dev:armhf
libgl1-mesa-dri:armhf
libgl1-mesa-glx:armhf
libglapi-mesa:armhf
libgles1-mesa:armhf
libgles1-mesa-dev:armhf
libgles2-mesa:armhf
libgles2-mesa-dev:armhf
libglew1.10:armhf
libglew-dev:armhf
libglib2.0-bin
libglib2.0-dev
libglu1-mesa:armhf
libglu1-mesa-dev
libgme0
libgme-dev
libgmp-dev:armhf
libgmpxx4ldbl:armhf
libgnutls28-dev:armhf
libgnutlsxx28:armhf
libgphoto2-6:armhf
libgphoto2-l10n
libgphoto2-port10:armhf
libgpm2:armhf
libgraphite2-3:armhf
libgraphviz-dev
libgs9
libgs9-common
libgsm1:armhf
libgsm1-dev:armhf
libgstreamer1.0-0:armhf
libgstreamer1.0-dev
libgstreamer-plugins-bad1.0-0:armhf
libgstreamer-plugins-base1.0-0:armhf
libgtk2.0-0:armhf
libgtk2.0-bin
libgtk2.0-common
libgtk2.0-dev
libgtk-3-0:armhf
libgtk-3-bin
libgtk-3-common
libgtkglext1
libgudev-1.0-0:armhf
libgusb2:armhf
libgvc6
libgvpr2
libharfbuzz0b:armhf
libharfbuzz-dev
libharfbuzz-gobject0:armhf
libharfbuzz-icu0:armhf
libhtml-format-perl
libhtml-form-perl
libhtml-parser-perl
libhtml-tagset-perl
libhtml-tree-perl
libhttp-cookies-perl
libhttp-daemon-perl
libhttp-date-perl
libhttp-message-perl
libhttp-negotiate-perl
libice6:armhf
libice-dev:armhf
libiec61883-0:armhf
libiec61883-dev
libieee1284-3:armhf
libijs-0.35:armhf
libilmbase6:armhf
libilmbase-dev
libio-html-perl
libio-socket-ssl-perl
libiptcdata0
libiptcdata0-dev
libjack0:armhf
libjack-dev
libjasper1:armhf
libjasper-dev
libjbig0:armhf
libjbig2dec0
libjbig-dev:armhf
libjpeg62-turbo-dev:armhf
libjpeg8:armhf
libjpeg-dev
libjs-jquery
libjsoncpp0
libjson-glib-1.0-0:armhf
libjson-glib-1.0-common
libkate1
libkate-dev
liblavfile-2.1-0
liblavjpeg-2.1-0
liblavplay-2.1-0
liblcms2-2:armhf
liblcms2-dev:armhf
libllvm3.4:armhf
libllvm3.7:armhf
liblqr-1-0:armhf
liblqr-1-0-dev
libltdl7:armhf
libltdl-dev:armhf
liblua5.2-0:armhf
liblwp-mediatypes-perl
liblwp-protocol-https-perl
liblzma-dev:armhf
liblzo2-2:armhf
libmad0:armhf
libmad0-dev
libmagick++-6-headers
libmagick++-6.q16-5:armhf
libmagickcore-6-arch-config:armhf
libmagickcore-6-headers
libmagickcore-6.q16-2:armhf
libmagickcore-6.q16-2-extra:armhf
libmagickwand-6-headers
libmagickwand-6.q16-2:armhf
libmail-sendmail-perl
libmailtools-perl
libmhash2:armhf
libmimic0
libmjpegtools-dev
libmjpegutils-2.1-0
libmms0:armhf
libmms-dev:armhf
libmng1:armhf
libmodplug1
libmodplug-dev
libmodule-build-perl
libmp3lame0:armhf
libmp3lame-dev:armhf
libmpcdec6:armhf
libmpcdec-dev:armhf
libmpdec2:armhf
libmpeg2-4:armhf
libmpeg2-4-dev:armhf
libmpeg2encpp-2.1-0
libmpg123-0:armhf
libmplex2-2.1-0
libncurses5-dev:armhf
libnet-http-perl
libnet-smtp-ssl-perl
libnet-ssleay-perl
libofa0
libofa0-dev
libogg0:armhf
libogg-dev:armhf
libopenal1:armhf
libopenal-data
libopenal-dev:armhf
libopencore-amrnb0:armhf
libopencore-amrnb-dev:armhf
libopencore-amrwb0:armhf
libopencore-amrwb-dev:armhf
libopencv2.4-java
libopencv2.4-jni
libopencv-calib3d2.4:armhf
libopencv-calib3d-dev:armhf
libopencv-contrib2.4:armhf
libopencv-contrib-dev:armhf
libopencv-core2.4:armhf
libopencv-core-dev:armhf
libopencv-features2d2.4:armhf
libopencv-features2d-dev:armhf
libopencv-flann2.4:armhf
libopencv-flann-dev:armhf
libopencv-gpu2.4:armhf
libopencv-gpu-dev:armhf
libopencv-highgui2.4:armhf
libopencv-highgui-dev:armhf
libopencv-imgproc2.4:armhf
libopencv-imgproc-dev:armhf
libopencv-legacy2.4:armhf
libopencv-legacy-dev:armhf
libopencv-ml2.4:armhf
libopencv-ml-dev:armhf
libopencv-objdetect2.4:armhf
libopencv-objdetect-dev:armhf
libopencv-ocl2.4:armhf
libopencv-photo2.4:armhf
libopencv-photo-dev:armhf
libopencv-stitching2.4:armhf
libopencv-stitching-dev:armhf
libopencv-superres2.4:armhf
libopencv-ts2.4:armhf
libopencv-ts-dev:armhf
libopencv-video2.4:armhf
libopencv-video-dev:armhf
libopencv-videostab2.4:armhf
libopenexr6:armhf
libopenexr-dev
libopenjpeg5:armhf
libopus0:armhf
libopus-dev:armhf
liborc-0.4-0:armhf
liborc-0.4-dev
libp11-kit-dev
libpam-systemd:armhf
libpango-1.0-0:armhf
libpango1.0-dev
libpangocairo-1.0-0:armhf
libpangoft2-1.0-0:armhf
libpangox-1.0-0:armhf
libpangoxft-1.0-0:armhf
libpaper1:armhf
libpaper-utils
libpathplan4
libpcre3-dev:armhf
libpcrecpp0:armhf
libpixman-1-0:armhf
libpixman-1-dev
libpolkit-agent-1-0:armhf
libpolkit-backend-1-0:armhf
libpolkit-gobject-1-0:armhf
libpopt-dev:armhf
libproxy1:armhf
libpthread-stubs0-dev:armhf
libpulse0:armhf
libpulse-mainloop-glib0:armhf
libpython2.7-dev:armhf
libpython3.4:armhf
libpython3.4-dev:armhf
libpython3.4-minimal:armhf
libpython3.4-stdlib:armhf
libpython3-dev:armhf
libpython3-stdlib:armhf
libpython-dev:armhf
libquicktime2:armhf
libraptor2-0:armhf
libraptor2-dev
libraspberrypi0
libraspberrypi-bin
libraspberrypi-dev
libraspberrypi-doc
librasqal3:armhf
librasqal3-dev
libraw10:armhf
libraw1394-11:armhf
libraw1394-dev:armhf
libraw1394-tools
librdf0:armhf
librdf0-dev
librest-0.7-0:armhf
librsvg2-2:armhf
librsvg2-common:armhf
librtaudio5:armhf
librtaudio-dev:armhf
librtmp-dev:armhf
libsane:armhf
libsane-common
libsane-extras:armhf
libsane-extras-common
libsbc1:armhf
libschroedinger-1.0-0:armhf
libschroedinger-dev:armhf
libsdl1.2debian:armhf
libshout3:armhf
libshout3-dev:armhf
libsidplay1
libsidplay1-dev
libsigsegv2:armhf
libslang2-dev:armhf
libslv2-9
libslv2-dev
libsm6:armhf
libsm-dev:armhf
libsndfile1:armhf
libsndfile1-dev
libsoundtouch0:armhf
libsoundtouch-dev
libsoup2.4-1:armhf
libsoup-gnome2.4-1:armhf
libsp1c2
libspandsp2:armhf
libspandsp-dev:armhf
libspeex1:armhf
libspeex-dev:armhf
libsrtp0
libssl1.0.0:armhf
libssl-dev:armhf
libssl-doc
libswscale3:armhf
libswscale-dev
libsys-hostname-long-perl
libtag1c2a:armhf
libtag1-dev
libtag1-vanilla:armhf
libtasn1-6-dev
libtasn1-doc
libthai0:armhf
libthai-data
libtheora0:armhf
libtheora-dev:armhf
libtiff5:armhf
libtiff5-dev:armhf
libtiffxx5:armhf
libtinfo-dev:armhf
libtool
libtwolame0
libtwolame-dev
libtxc-dxtn-s2tc0:armhf
libudev-dev:armhf
libunistring0:armhf
liburi-perl
libusb-1.0-0-dbg:armhf
libusb-1.0-0-dev:armhf
libusb-1.0-doc
libv4l-dev:armhf
libva1:armhf
libvdpau1:armhf
libvisual-0.4-0:armhf
libvisual-0.4-dev
libvisual-0.4-plugins:armhf
libvo-aacenc0:armhf
libvo-amrwbenc0:armhf
libvorbis0a:armhf
libvorbis-dev:armhf
libvorbisenc2:armhf
libvorbisfile3:armhf
libvpx1:armhf
libwavpack1:armhf
libwavpack-dev:armhf
libwayland-client0:armhf
libwayland-cursor0:armhf
libwayland-dev
libwayland-egl1-mesa:armhf
libwayland-server0:armhf
libwbclient0:armhf
libwebp5:armhf
libwildmidi1:armhf
libwildmidi-config
libwmf0.2-7:armhf
libwmf-dev
libwww-perl
libwww-robotrules-perl
libx11-dev:armhf
libx11-doc
libx11-xcb1:armhf
libx11-xcb-dev:armhf
libx264-142:armhf
libx264-dev:armhf
libxapian22
libxau-dev:armhf
libxcb1-dev:armhf
libxcb-dri2-0:armhf
libxcb-dri2-0-dev:armhf
libxcb-dri3-0:armhf
libxcb-dri3-dev:armhf
libxcb-glx0:armhf
libxcb-glx0-dev:armhf
libxcb-present0:armhf
libxcb-present-dev:armhf
libxcb-randr0:armhf
libxcb-randr0-dev:armhf
libxcb-render0:armhf
libxcb-render0-dev:armhf
libxcb-shape0:armhf
libxcb-shape0-dev:armhf
libxcb-shm0:armhf
libxcb-shm0-dev:armhf
libxcb-sync1:armhf
libxcb-sync-dev:armhf
libxcb-xfixes0:armhf
libxcb-xfixes0-dev:armhf
libxcomposite1:armhf
libxcomposite-dev
libxcursor1:armhf
libxcursor-dev:armhf
libxdamage1:armhf
libxdamage-dev:armhf
libxdmcp-dev:armhf
libxdot4
libxext-dev:armhf
libxfixes3:armhf
libxfixes-dev:armhf
libxft2:armhf
libxft-dev
libxi6:armhf
libxi-dev
libxinerama1:armhf
libxinerama-dev:armhf
libxkbcommon0:armhf
libxkbcommon-dev
libxml2:armhf
libxml2-dev:armhf
libxml2-utils
libxml-parser-perl
libxmu6:armhf
libxmu-dev:armhf
libxmu-headers
libxpm4:armhf
libxrandr2:armhf
libxrandr-dev:armhf
libxrender1:armhf
libxrender-dev:armhf
libxshmfence1:armhf
libxshmfence-dev:armhf
libxslt1.1:armhf
libxslt1-dev:armhf
libxt6:armhf
libxt-dev:armhf
libxtst6:armhf
libxtst-dev:armhf
libxv1:armhf
libxvidcore4:armhf
libxvidcore-dev:armhf
libxxf86vm1:armhf
libxxf86vm-dev:armhf
libyajl2:armhf
libyajl-dev:armhf
libzbar0
libzvbi0:armhf
libzvbi-common
libzvbi-dev:armhf
llvm-3.4
llvm-3.4-dev
llvm-3.4-runtime
lv2-dev
m4
mesa-common-dev:armhf
mjpegtools
mjpegtools-gtk
nettle-dev
ntp
opencv-data
openssh-client
openssh-server
openssh-sftp-server
openssl
perl
perl-base
perl-modules
po-debconf
policykit-1
poppler-data
python2.7-dev
python3
python3.4
python3.4-dev
python3.4-minimal
python3-dev
python3-gi
python3-minimal
python-dev
python-gi
python-gi-dev
python-gobject-2
python-gobject-2-dev
python-gobject-dev
python-mako
python-markupsafe
raptor2-utils
raspberrypi-bootloader
raspberrypi-kernel
rasqal-utils
redland-utils
rsync
samba-common
sane-utils
sgml-data
sp
ssh
tzdata
update-inetd
uuid-dev:armhf
va-driver-all:armhf
vdpau-va-driver:armhf
vnstat
x11-common
x11proto-composite-dev
x11proto-core-dev
x11proto-damage-dev
x11proto-dri2-dev
x11proto-fixes-dev
x11proto-gl-dev
x11proto-input-dev
x11proto-kb-dev
x11proto-randr-dev
x11proto-record-dev
x11proto-render-dev
x11proto-xext-dev
x11proto-xf86vidmode-dev
x11proto-xinerama-dev
xorg-sgml-doctools
xsltproc
xtrans-dev
yasm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment