From 8190a5ccae478690d95aced4baea1caef4dc3c3b Mon Sep 17 00:00:00 2001 From: echel0n Date: Sun, 20 Apr 2014 22:55:31 -0700 Subject: [PATCH] Removed getffmpeg.sh --- getffmpeg.sh | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100755 getffmpeg.sh diff --git a/getffmpeg.sh b/getffmpeg.sh deleted file mode 100755 index 2fb3a137..00000000 --- a/getffmpeg.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -# get ffmpeg/yasm/x264 -git clone git://source.ffmpeg.org/ffmpeg.git FFmpeg -git clone git://github.com/yasm/yasm.git FFmpeg/yasm -git clone git://git.videolan.org/x264.git FFmpeg/x264 - -# compile/install yasm -cd FFmpeg/yasm -./autogen.sh -./configure -make -make install -cd - - -# compile/install x264 -cd FFmpeg/x264 -./configure --enable-static --enable-shared -make -make install -ldconfig -cd - - -# compile/install ffmpeg -cd FFmpeg -./configure --disable-asm --enable-libx264 --enable-gpl -make install -cd - \ No newline at end of file