-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.ubuntu
111 lines (83 loc) · 4.83 KB
/
README.ubuntu
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
TOC
1. Introduction
2. Getting the source code
3. Installing the required Ubuntu packages
4. How to compile
5. How to run
6. Uninstalling
7. Endword
-----------------------------------------------------------------------------
1. Introduction
-----------------------------------------------------------------------------
We currently recommend Ubuntu Hardy(8.04), Intrepid(8.10), or Jaunty(9.04).
A gfx-adapter with OpenGL acceleration is highly recommended and 24/32
bitdepth is required with OpenGL.
NOTE TO NEW LINUX USERS: All lines that are prefixed with the '#'
character are commands that need to be typed into a terminal window /
console (similar to the command prompt for Windows). Note that the '#'
character itself should NOT be typed as part of the command.
-----------------------------------------------------------------------------
2. Getting the source code
-----------------------------------------------------------------------------
# sudo apt-get install subversion
# cd $HOME
# svn checkout https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk xbmc
-----------------------------------------------------------------------------
3. Installing the required Ubuntu packages
-----------------------------------------------------------------------------
Two methods exist to install the required Ubuntu packages :
--------------------------------------------------------------------
3.1. Copy and paste the following line corresponding to your system
--------------------------------------------------------------------
For Ubuntu (all versions >= 7.04):
# sudo aptitude install subversion make g++ gcc gawk pmount libtool nasm automake cmake gperf unzip bison libsdl-dev libsdl-image1.2-dev libsdl-gfx1.2-dev libsdl-mixer1.2-dev libfribidi-dev liblzo2-dev libfreetype6-dev libsqlite3-dev libogg-dev libasound-dev python-sqlite libglew-dev libcurl3 libcurl4-openssl-dev x11proto-xinerama-dev libxinerama-dev libxrandr-dev libxrender-dev libmad0-dev libogg-dev libvorbisenc2 libsmbclient-dev libmysqlclient-dev libpcre3-dev libdbus-1-dev libhal-dev libhal-storage-dev libjasper-dev libfontconfig-dev libbz2-dev libboost-dev libfaac-dev libenca-dev libxt-dev libxtst-dev libxmu-dev libpng-dev libjpeg-dev libpulse-dev mesa-utils libcdio-dev libsamplerate-dev libmms-dev libmpeg3-dev libfaad-dev libflac-dev libiso9660-dev libass-dev libssl-dev fp-compiler gdc libwavpack-dev libmpeg2-4-dev libmicrohttpd-dev libmodplug-dev
On 8.04 and older versions, libmms is outdated and thus XBMC will not compile properly.
In this case you will have to manually compile the latest version.
# wget "http://launchpad.net/libmms/trunk/0.5/+download/libmms-0.5.tar.gz"
# tar zxvf libmms-0.5.tar.gz
# cd libmms-0.5
# ./configure --prefix=/usr
# make
# sudo make install
On 8.10 and older versions, libcurl is outdated and thus XBMC will not compile properly.
In this case you will have to manually compile the latest version.
# wget http://curl.sourceforge.net/download/curl-7.19.7.tar.gz
# tar -xzf curl-7.19.7.tar.gz
# cd curl-7.19.7
# ./configure --disable-ipv6 --without-libidn --without-libssh2 --disable-ldap --prefix=/usr
# make
# sudo make install
On 8.04 and older versions, libmodplug is outdated and thus XBMC will not compile properly.
In this case you will have to manually compile the latest version. Luckly the source is
already in the xbcm source code tree.
# cd lib/libmodplug
# ./configure --prefix=/usr
# make
# sudo make install
--------------------------------------------------------------
3.2. Use a single command to get all build dependencies
--------------------------------------------------------------
For this, you need to specify the PPA in your apt sources. Please find them on the forum
http://xbmc.org/forum/showthread.php?t=33327
Update apt :
# sudo apt-get update
Here is the magic command to get the build dependencies (used to compile the version on the PPA).
# sudo apt-get build-dep xbmc
*** Avoid using "aptitude" for the build-dep command. It doesn't resolve everything.
*** For developers and anyone else who compiles frequently it is recommended to use ccache
sudo apt-get install ccache
*** A tip for those with multiple computers at home is to check out distcc (totally unsupported from xbmc ofcourse)
sudo apt-get install distcc
-----------------------------------------------------------------------------
4. How to compile
-----------------------------------------------------------------------------
See README.linux
-----------------------------------------------------------------------------
5. Uninstalling
-----------------------------------------------------------------------------
$ sudo apt-get remove xbmc*
-----------------------------------------------------------------------------
6. Endword
-----------------------------------------------------------------------------
Have fun!
EOF