Codebase list ffmpeg2theora / 913ec370-c00c-48a8-b93c-60c713cf4eb3/main get_ffmpeg.sh
913ec370-c00c-48a8-b93c-60c713cf4eb3/main

Tree @913ec370-c00c-48a8-b93c-60c713cf4eb3/main (Download .tar.gz)

get_ffmpeg.sh @913ec370-c00c-48a8-b93c-60c713cf4eb3/mainraw · history · blame

#!/bin/sh
cd `dirname $0`

# load FFMPEG specific properties
. ./ffmpegrev

test -e $FFMPEG_CO_DIR || git clone --depth 1 $FFMPEG_URL $FFMPEG_CO_DIR
cd $FFMPEG_CO_DIR
#git pull -r $FFMPEG_REVISION
#git checkout release/0.7 
git checkout master
git pull
cd ..

apply_patches() {
  cd $FFMPEG_CO_DIR
  for patch in ../patches/*.patch; do
    patch -p0 < $patch
  done
  touch .ffmpeg2theora_patched
  cd ..
}

./build_ffmpeg.sh