recompiled opus for 64bit and added build scripts

This commit is contained in:
Diego Waxemberg
2014-10-21 03:15:29 -04:00
parent f4f3d7df50
commit 1f19d4de9d
13 changed files with 427 additions and 48 deletions

21
BuildScripts/Opus/sync.sh Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/sh
set -e
source config.sh
SCRIPT_DIR=$( (cd -P $(dirname $0) && pwd) )
DIST_DIR_BASE=${DIST_DIR_BASE:="$SCRIPT_DIR/dist"}
git submodule update --init opus
cd opus
git checkout master
git pull origin master
cd ..
for ARCH in $ARCHS
do
OPUS_DIR=opus-$ARCH
echo "Syncing source for $ARCH to directory $OPUS_DIR"
rsync opus/ $OPUS_DIR/ --exclude '.*' -a --delete
done