Skip to content

Instantly share code, notes, and snippets.

@fohletex
fohletex / gstreamer-build.sh
Last active August 29, 2016 15:14 — forked from sphaero/gstreamer-build.sh
Install & build gstreamer from git
#!/bin/bash --debugger
set -e
BRANCH="master"
if grep -q BCM2708 /proc/cpuinfo; then
echo "RPI BUILD!"
RPI="1"
fi
[ -n "$1" ] && BRANCH=$1