SVN - http://tortoisesvn.net/downloads (used 64bit because I use Vista x64 but you can use 32bit)
ANT - http://mirror.candidhosting.com/pub/apa ... .1-bin.zip
JDK - https://cds.sun.com/is-bin/INTERSHOP.en ... _Developer (pick Windows and click agree to the license then click on the filename to get direct link to download instead of using their download manager)
First, install Tortoise SVN. It will provide you a SVN client to download the latest SVN from the source. Then, pick a place to download PMS. I used my desktop. Right click to get the option of SVN Checkout in the context menu. Then fill the box URL of repository with http://ps3mediaserver.googlecode.com/svn/trunk/ then hit OK. It should take awhile to download the files.
Next, we are going to install and setup ANT so we can use it in command line. Extract the apache-ant-1.7.1-bin.zip to where you want to install it. I used my root directory C:\ so it was at C:\Ant. After that you need to install JDK. Then, we are going to setup the environmental variables to make ANT work. From the start menu, type in cmd and enter at the search bar. It should open up a command line box. Here are the commands we type in next.
- Code: Select all
set ANT_HOME=C:\Ant
set JAVA_HOME=C:\Program Files (x86)\Java\jdk1.6.0_12
set PATH=%PATH%;%ANT_HOME%\bin
ANT_HOME is where you installed ANT so change it to where it is installed. Mine happened to be in C:\Ant . JAVA_HOME is where your JDK is installed. After all this ANT should be setup correctly so now we can build the SVN.
So with the command box still open we go to where you downloaded the SVN trunk of PMS. Mine was at my desktop in C:\Users\tomei\Desktop\ps3mediaserver\ps3mediaserver\ . Then type in ANT in the command line to build the SVN. After a minute or two, it should say build successful and the time it took to build it. Now look under the dist folder of the SVN trunk to find the exe to install PMS. It should have the file pms-setup-win32-1.04.exe if you were successful. Also, there is a linux build for linux users as well. Install the exe file.
Congratulations!, you now have the latest build of PMS. Hope this guide helps people to build the newest version of PMS so we get more people to test it and write bug reports.
