init commit
authorPeng Li <seudut@gmail.com>
Tue, 29 May 2018 08:01:58 +0000 (16:01 +0800)
committerPeng Li <seudut@gmail.com>
Tue, 29 May 2018 08:01:58 +0000 (16:01 +0800)
third_party/SDL2-2.0.8.tar.gz [new file with mode: 0644]
third_party/build_ffmpeg.sh [new file with mode: 0755]
third_party/ffmpeg-3.0.11.tar.bz2 [new file with mode: 0644]

diff --git a/third_party/SDL2-2.0.8.tar.gz b/third_party/SDL2-2.0.8.tar.gz
new file mode 100644 (file)
index 0000000..befc155
Binary files /dev/null and b/third_party/SDL2-2.0.8.tar.gz differ
diff --git a/third_party/build_ffmpeg.sh b/third_party/build_ffmpeg.sh
new file mode 100755 (executable)
index 0000000..569badc
--- /dev/null
@@ -0,0 +1,18 @@
+#!/bin/bash 
+
+FFMPEG_VERSION=3.0.11
+PREFIX="_build"
+
+cd ./ffmpeg-$FFMPEG_VERSION;
+
+rm -rf $PREFIX;
+./configure --prefix=$PREFIX \
+    --enable-shared --disable-static \
+    --disable-programs \
+    --enable-rpath \
+    || exit 1
+
+make clean || exit 1
+make -j16 || exit 1
+make install || exit 1
+
diff --git a/third_party/ffmpeg-3.0.11.tar.bz2 b/third_party/ffmpeg-3.0.11.tar.bz2
new file mode 100644 (file)
index 0000000..65b0b92
Binary files /dev/null and b/third_party/ffmpeg-3.0.11.tar.bz2 differ