From af2d55db22f101765383d23ea49dd29b0551394e Mon Sep 17 00:00:00 2001 From: Hugo van der Wijst Date: Mon, 21 Oct 2013 11:55:43 +0200 Subject: Update INSTALL.md Link against self build FFmpeg. --- INSTALL.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'INSTALL.md') diff --git a/INSTALL.md b/INSTALL.md index ada9bc3c..b8265951 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -16,7 +16,7 @@ Build dependencies: ```bash -sudo apt-get install build-essential libtool autotools-dev automake libconfig-dev ncurses-dev checkinstall check git libavformat-dev libavdevice-dev libswscale-dev libsdl-dev libopenal-dev libopus-dev libvpx-dev +sudo apt-get install build-essential libtool autotools-dev automake libconfig-dev ncurses-dev checkinstall check git libswscale-dev libsdl-dev libopenal-dev libopus-dev libvpx-dev yasm ``` On Fedora: @@ -40,6 +40,7 @@ sudo ldconfig cd .. ``` + Or if checkinstall is not easily available for your distribution (e.g. Fedora), this will install the libs to /usr/local/lib and the headers to /usr/local/include: @@ -54,13 +55,22 @@ sudo make install cd .. ``` +You also need recent [FFmpeg](http://git.videolan.org/?p=ffmpeg.git) libraries: +```bash +git clone git://source.ffmpeg.org/ffmpeg.git +cd ffmpeg +git checkout n2.0.2 +./configure --prefix=`pwd`/install --disable-programs +make && make install +cd .. +``` Then clone this repo and generate makefile: ```bash git clone git://github.com/irungentoo/ProjectTox-Core.git cd ProjectTox-Core autoreconf -i -./configure +./configure --with-dependency-search=`pwd`/../ffmpeg/install make sudo make install ``` -- cgit v1.2.3