vlc/INSTALL

69 lines
1.6 KiB
Plaintext
Raw Normal View History

INSTALL file for the VLC media player
2010-10-31 12:39:27 +01:00
More extensive information for *nix, Windows and Mac OS X users can be
2008-11-24 17:52:46 +01:00
found here: http://developers.videolan.org/vlc/
Bootstrapping VLC
=================
2008-10-10 20:43:14 +02:00
If you retrieved VLC from the git server and do not have a "configure"
script, please refer to the HACKING file.
Configuring VLC
===============
A typical way to configure VLC is:
./configure
See `./configure --help' for more information.
2001-11-12 12:37:30 +01:00
If you intend to debug stuff, you may want to compile with debugging
symbols:
make distclean ; ./configure --enable-debug
2007-03-11 11:44:48 +01:00
We recommend using GCC to build VLC, though some people reported success
with the Intel C compiler (version 8) as well. GCC version 3.3 or higher is
2010-10-31 12:39:27 +01:00
required. On older systems (e.g. FreeBSD 4.x), please select a more recent
version manually by setting the CC and CXX environment variables
2006-11-25 16:07:40 +01:00
appropriately while running the ./configure shell script.
Building VLC
============
Once configured, run `make' to build VLC.
Installing and running VLC
==========================
You can install the VLC and its plugins by typing:
make install
But you don't need to install it if you don't want to; VLC can be launched
from the current directory as well:
./vlc
Building packages
=================
To build a Debian package, you need to get the packaging info
git clone git://git.debian.org/pkg-multimedia/vlc.git debian
and then
git-buildpackage
2008-11-24 17:52:46 +01:00
To build RPM packages, copy a spec file from extra/package/rpm and:
rpm -ba vlc.spec
2001-11-12 12:37:30 +01:00
To build an ipkg package (iPAQ familiar Linux), use:
ipkg-buildpackage
2001-11-27 13:52:54 +01:00