I hate to say it, but if you find the wiki is not for beginners, then the code isn't going to be any more beginner friendly....
At any rate, I would second j-b's recommendation for Linux. The Windows route has many steps, and can be complicated. I think it may take 60 min to get everything setup, and that's if everything goes correctly. If you do go Windows, I would recommend msys+mingw. Read the wiki -- it's going to be your best source. If you're desperate, you can also refer to following link for more details:
viewtopic.php?f=32&t=76483
I've compiled for the first time on Ubuntu tonight. This was incredibly easy compared to the Windows route (especially for a beginner who knows very little about Linux).
If you want a simple series of steps, I would recommend looking at j-b's blog:
http://www.jbkempf.com/blog/post/2009/0 ... 5-commands
My version of his steps:
Code: Select all
sudo apt-get build-dep vlc && sudo apt-get install libtool build-essential automake1.10 git-core
* unpacked the vlc-1.1.4.tar.gz to a vlc directory (note that his blog is for 1.0)
cd vlc && ./bootstrap
* skipped sudo apt-get install libxcb-shm0-dev libxcb-xv0-dev libxcb-keysyms1-dev libxcb-randr0-dev (this didn't solve my xcb problem)
mkdir build && cd build && ../configure --disable-nls --enable-qt4 --disable-xcb
make
Hope this helps