Changes between Version 1 and Version 2 of UbuntuCompilationGuideHardy


Ignore:
Timestamp:
05/03/2012 08:15:53 PM (13 months ago)
Author:
llogan
Comment:

shallow repo not allowed over http for libvpx; curl is a dependency to get libvpx via git; add --enable-libvpx

Legend:

Unmodified
Added
Removed
Modified
  • UbuntuCompilationGuideHardy

    v1 v2  
    5353MP3 audio encoder. 
    5454{{{ 
    55 sudo apt-get remove liblame-dev 
    56 sudo apt-get install nasm 
     55sudo apt-get -y remove liblame-dev 
     56sudo apt-get -y install nasm 
    5757cd 
    5858wget http://downloads.sourceforge.net/project/lame/lame/3.99/lame-3.99.5.tar.gz 
     
    6868Theora video encoder. 
    6969{{{ 
    70 sudo apt-get install libogg-dev 
     70sudo apt-get -y install libogg-dev 
    7171cd 
    7272wget http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.gz 
     
    8282VP8 video encoder and decoder. 
    8383{{{ 
     84sudo apt-get -y install curl 
    8485cd 
    85 git clone --depth 1 http://git.chromium.org/webm/libvpx.git 
     86git clone http://git.chromium.org/webm/libvpx.git 
    8687cd libvpx 
    8788./configure 
     
    9798cd ffmpeg 
    9899./configure --enable-gpl --enable-version3 --enable-nonfree --enable-libfaac \ 
    99   --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libx264 \ 
    100   --enable-x11grab 
     100  --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libvpx \ 
     101  --enable-libx264 --enable-x11grab 
    101102make 
    102103sudo checkinstall --pkgname=ffmpeg --pkgversion="4:git-$(date +%Y%m%d)" --backup=no \