| 1 |
# Build instructions |
| 2 |
|
| 3 |
## Prerequisites |
| 4 |
To compile Minitube you need at least Qt 4.5, Qt >= 4.6 is recommended. |
| 5 |
The following Qt modules are needed: core, gui, network, xml, phonon, dbus |
| 6 |
|
| 7 |
On a Debian or Ubuntu system type: |
| 8 |
sudo apt-get install build-essential qt4-dev-tools libphonon-dev |
| 9 |
|
| 10 |
## Compiling |
| 11 |
Run: |
| 12 |
$ qmake |
| 13 |
and then: |
| 14 |
$ make |
| 15 |
Beware of the Qt3 version of qmake! If things go wrong try running qmake-qt4 instead. |
| 16 |
|
| 17 |
## Running |
| 18 |
./build/target/minitube |
| 19 |
|
| 20 |
## A word about Phonon on Linux |
| 21 |
To be able to actually watch videos you need a working Phonon setup. |
| 22 |
Please don't contact me about this, ask for help on your distribution support channels. |
| 23 |
|
| 24 |
## Installing on Linux |
| 25 |
Run: |
| 26 |
$ sudo make install |
| 27 |
This is for packagers. End users should not install applications in this way. |
| 28 |
|
| 29 |
## Legal Stuff |
| 30 |
Copyright (C) Flavio Tordini |
| 31 |
|
| 32 |
This program is free software: you can redistribute it and/or modify |
| 33 |
it under the terms of the GNU General Public License as published by |
| 34 |
the Free Software Foundation, either version 3 of the License, or |
| 35 |
(at your option) any later version. |
| 36 |
|
| 37 |
This program is distributed in the hope that it will be useful, |
| 38 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 39 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 40 |
GNU General Public License for more details. |
| 41 |
|
| 42 |
You should have received a copy of the GNU General Public License |
| 43 |
along with this program. If not, see <http://www.gnu.org/licenses/>. |