Project

General

Profile

Building quasselcore on Ubuntu 804 Hardy Heronx64 (old Qt4 libs) » History » Version 4

miohtama, 11/08/2009 10:51 PM

1 1 miohtama
h1. Building quasselcore on Ubuntu 804 Hardy Heron/x64
2 1 miohtama
3 4 miohtama
Ubuntu 8.04 Hardy Heron (latest long term supported Ubuntu) does not come fresh enough Qt4 libs to build Quassel 0.5.0. Qt 4.4.1 needed, Qt 4.4.0 is available by default.
4 1 miohtama
5 4 miohtama
Here are some notes for advanced users to get Quassel up and running.
6 1 miohtama
7 2 miohtama
* Enable Scott Kitterman's repositories on the system https://launchpad.net/~kitterman/+archive/ppa. You need to 1) install GPG key 2) add PPA repositories to /etc/apt/source.list. The page contains instructions how to do this.
8 1 miohtama
9 2 miohtama
* Run apt-get update to make system to reflect packages on Kitterman's repositories
10 1 miohtama
11 2 miohtama
Check that version given for qt4-dev-tools is 4.4.3 now (it pulls from Scott's PPA repository):
12 2 miohtama
<pre>
13 2 miohtama
apt-cache show qt4-dev-tools
14 2 miohtama
</pre>
15 1 miohtama
16 2 miohtama
Install qt4-dev-tools (Qt 4.4.3 version)
17 2 miohtama
<pre>
18 2 miohtama
apt-get install qt4-dev-tools
19 2 miohtama
</pre>
20 2 miohtama
21 2 miohtama
22 2 miohtama
Download Quassel source tarball and extract it: http://quassel-irc.org/downloads
23 2 miohtama
24 3 miohtama
Build it
25 2 miohtama
<pre>
26 2 miohtama
cmake .
27 3 miohtama
make
28 2 miohtama
</pre>
29 2 miohtama
30 3 miohtama
Run it. The output will come to terminal to solve possible issues during the launch.
31 1 miohtama
<pre>
32 3 miohtama
./quasselcore 
33 1 miohtama
</pre>
34 3 miohtama
35 2 miohtama