Changes between Version 14 and Version 15 of MacOSXCompilationGuide
- Timestamp:
- 09/19/2012 10:59:50 AM (8 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MacOSXCompilationGuide
v14 v15 16 16 {{{ 17 17 # install homebrew 18 ruby <(curl -fsSkL raw.github.com/mxcl/homebrew/go) ;18 ruby <(curl -fsSkL raw.github.com/mxcl/homebrew/go) 19 19 # install dependencies 20 brew install automake faac git lame libass libtool libvorbis libvpx libvo-aacenc\21 opencore-amr openjpeg opus sdl schroedinger shtool speex texi2html theora\22 wget x264 xvid yasm; 20 brew install automake celt faac git lame libass libtool libvorbis libvpx \ 21 libvo-aacenc opencore-amr openjpeg opus sdl schroedinger shtool speex texi2html \ 22 theora wget x264 xvid yasm 23 23 }}} 24 24 25 25 Install fdk-aac (atm. there is no recipe for it): 26 26 {{{ 27 git clone git://opencore-amr.git.sourceforge.net/gitroot/opencore-amr/fdk-aac ;28 cd fdk-aac ;29 autoreconf -fvi ;30 ./configure --disable-shared ;31 make && make install ;27 git clone git://opencore-amr.git.sourceforge.net/gitroot/opencore-amr/fdk-aac 28 cd fdk-aac 29 autoreconf -fvi 30 ./configure --disable-shared 31 make && make install 32 32 }}} 33 33 34 34 Install libaacplus (atm. there is no recipe for it): 35 35 {{{ 36 wget http://217.20.164.161/~tipok/aacplus/libaacplus-2.0.2.tar.gz ;37 tar xzf libaacplus-2.0.2.tar.gz ;38 cd libaacplus-2.0.2 ;36 wget http://217.20.164.161/~tipok/aacplus/libaacplus-2.0.2.tar.gz 37 tar xzf libaacplus-2.0.2.tar.gz 38 cd libaacplus-2.0.2 39 39 # libtool on osx is quite different from the gnu libtool, which is called glibtool on osx 40 40 sed -i '.bck' -e 's/libtool/glibtool/' autogen.sh 41 ./autogen.sh ;42 make && make install ;41 ./autogen.sh 42 make && make install 43 43 }}} 44 44 … … 47 47 Install ffmpeg 48 48 {{{ 49 git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg ;50 cd ffmpeg ;49 git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg 50 cd ffmpeg 51 51 ./configure --enable-gpl --enable-version3 --enable-nonfree --enable-postproc --enable-libaacplus \ 52 --enable-libass --enable-lib faac --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame \52 --enable-libass --enable-libcelt --enable-libfaac --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame \ 53 53 --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-openssl \ 54 54 --enable-libopus --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libvo-aacenc \ 55 --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxvid --prefix=/usr/local ;56 make && make install ;55 --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxvid --prefix=/usr/local 56 make && make install 57 57 }}} 58 58


