]> git.sesse.net Git - vlc/blob - INSTALL
* INSTALL: added reference to online info on compiling on MacOSX and BeOS
[vlc] / INSTALL
1 $Id: INSTALL,v 1.25 2003/03/19 15:44:44 hartman Exp $
2
3 INSTALL file for the VLC media player
4
5 Mac OS X and BeOS users should read the documentation available at: 
6 http://developers.videolan.org/vlc/
7
8 Configuring VLC
9 ===============
10
11 A typical way to configure VLC is:
12
13    ./configure --prefix=/usr --enable-gnome
14
15 See `./configure --help' for more information.
16
17 If you intend to debug stuff, you may want to compile with debugging
18 symbols:
19
20    make distclean ; ./configure --prefix=/usr --enable-gnome --enable-debug
21
22
23 Building VLC
24 ============
25
26 Have a look at the generated Makefile.opts file, you may want to choose
27 which modules will be compiled as plugins, and which ones will remain in
28 the core application. The configure script tries to guess for you.
29
30 Once configured, run `make' to build VLC.
31
32
33 Installing and running VLC
34 ==========================
35
36 You can install the VLC and its plugins by typing:
37
38    make install
39
40 But you don't need to install it if you don't want to; VLC can be launched
41 from the current directory as well:
42
43    ./vlc
44
45
46 Building packages
47 =================
48
49 To build a Debian package, you may use:
50
51    dpkg-buildpackage -rfakeroot -us -uc
52
53
54 To build RedHat packages, use:
55
56    rpm -ba vlc.spec
57
58 To build an ipkg package (iPAQ familiar Linux), use:
59
60    ipkg-buildpackage
61