summaryrefslogtreecommitdiffstats
path: root/scripts/ffmpeg-config
blob: e94dd1fedf687e631c4b047b80654d290add5e3f (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e

OPTIONS="--enable-gpl --enable-nonfree --enable-avresample --disable-debug --disable-doc"

BUILD="$(pwd)"
mkdir -p "$BUILD"/ffmpeg_build
cd "$BUILD"/ffmpeg_build
"$BUILD"/ffmpeg/configure --prefix="$BUILD"/build_libs --enable-static --disable-shared $OPTIONS