Skip to content

Instantly share code, notes, and snippets.

View thekvs's full-sized avatar

Konstantin Sorokin thekvs

View GitHub Profile
@thekvs
thekvs / gstreamer-build.sh
Created December 28, 2016 16:18 — 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