initial version of raspberry pi setup script
This commit is contained in:
parent
0e8cbe8c37
commit
0aef9be739
1 changed files with 15 additions and 0 deletions
15
distributions/raspijamulus.sh
Executable file
15
distributions/raspijamulus.sh
Executable file
|
@ -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
|
||||
|
Loading…
Reference in a new issue