From 0aef9be73936e66e3950c996c92c7e726b2e3de6 Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Sat, 21 Sep 2019 09:15:08 +0200 Subject: [PATCH] initial version of raspberry pi setup script --- distributions/raspijamulus.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 distributions/raspijamulus.sh diff --git a/distributions/raspijamulus.sh b/distributions/raspijamulus.sh new file mode 100755 index 00000000..06508a48 --- /dev/null +++ b/distributions/raspijamulus.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# This script is intended to setup a clean Raspberry Pi system for running Jamulus + +# Opus audio codec, custom compilation with custom interface and fixed point +OPUS="opus-1.3" +if [ ! -d "${OPUS}" ]; then + wget https://archive.mozilla.org/pub/opus/${OPUS}.tar.gz + tar -xzf ${OPUS}.tar.gz + rm ${OPUS}.tar.gz + cd ${OPUS} + + echo "TODO: configure Opus for custom interface and fixed point and compile and install" +fi +