]> git.sesse.net Git - vlc/blob - extras/contrib/README
* New build system for the contrib packages of VLC. It supports to
[vlc] / extras / contrib / README
1 This is the contrib build system for VLC Media Player. It has been
2 primarily developed for Mac OS X, though it should be easy to adapt to
3 other operating systems.
4
5 To use it, first type :
6         ./bootstrap
7
8 Customize config.mak if you need type, then you need to choose between
9 building from source (can take a long time but is easily customizable)
10 and fetching a pre-compiled binary package. Either type 'make src'
11 or 'make bin'.
12
13 Once the contribs are built, you can start building VLC. VLC's bootstrap
14 and configure scripts will automatically detect the contrib directory,
15 but you still need to specify which plug-ins you want to build (though
16 it is unnecessary to add --with-* or --with-*-tree). For instance my
17 configure line is :
18         ./configure --disable-x11 --disable-xvideo --disable-gtk --disable-sdl --enable-ffmpeg --with-ffmpeg-mp3lame --enable-mad --enable-libdvbpsi --enable-a52 --enable-dvdplay --enable-faad --enable-vorbis --enable-theora --enable-ogg --enable-slp --enable-flac --enable-libmpeg2 --enable-mkv --enable-speex --enable-debug
19
20 Then for Darwin, 'make' will build the VLC.app application and copy the
21 contrib libs to VLC.app/Contents/MacOS/lib. The application is ready.
22
23 Happy hacking.
24 --Meuuh 2003-11-15