]> git.sur5r.net Git - minitube/blob - INSTALL
a6db61fee694cae6ee50eb7d054a8c35c88551d1
[minitube] / INSTALL
1 # Build instructions
2
3 ## Prerequisites
4
5 To compile Minitube you need Qt >= 4.5 installed.
6
7 On a Debian or Ubuntu system just type:
8     sudo apt-get install build-essential qt4-dev-tools libphonon-dev
9
10 Windows and Mac users can get the Qt libraries from:
11 http://qt.nokia.com/downloads
12
13 ## Compiling
14
15 Compiling on Linux is fairly easy. Just run:
16     qmake
17 and then
18     make
19
20 Beware of the Qt3 version of qmake! If things go wrong try running qmake-qt4 instead.
21
22 ## Running
23
24 Just type:
25     ./build/target/minitube
26
27 ## The visual way
28
29 There is also a visual way to build and run Qt apps.
30 Download the Qt SDK from: http://qt.nokia.com/downloads
31 Open `minitube.pro` with Qt Creator and use the Run (big green "play" icon) command.
32
33 ## Legal Stuff
34
35 Copyright (C) 2009  Flavio Tordini
36
37 This program is free software: you can redistribute it and/or modify
38 it under the terms of the GNU General Public License as published by
39 the Free Software Foundation, either version 3 of the License, or
40 (at your option) any later version.
41
42 This program is distributed in the hope that it will be useful,
43 but WITHOUT ANY WARRANTY; without even the implied warranty of
44 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
45 GNU General Public License for more details.
46
47 You should have received a copy of the GNU General Public License
48 along with this program.  If not, see <http://www.gnu.org/licenses/>.