]> git.sur5r.net Git - minitube/blob - INSTALL
Better build instructions
[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
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:
31 http://qt.nokia.com/downloads
32 And then open `minitube.pro` with Qt Creator.
33
34
35 ## Legal Stuff
36
37 Copyright (C) 2009  Flavio Tordini
38
39 This program is free software: you can redistribute it and/or modify
40 it under the terms of the GNU General Public License as published by
41 the Free Software Foundation, either version 3 of the License, or
42 (at your option) any later version.
43
44 This program is distributed in the hope that it will be useful,
45 but WITHOUT ANY WARRANTY; without even the implied warranty of
46 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
47 GNU General Public License for more details.
48
49 You should have received a copy of the GNU General Public License
50 along with this program.  If not, see <http://www.gnu.org/licenses/>.