From d1b1af6b6bdebc93d41cfb168218fd42dd4c9e0d Mon Sep 17 00:00:00 2001 From: Flavio Tordini Date: Wed, 15 Apr 2015 23:04:07 +0200 Subject: [PATCH] better read --- README.md | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 7060596..5f3396d 100644 --- a/README.md +++ b/README.md @@ -5,15 +5,7 @@ Minitube is a YouTube desktop application. It is written in C++ using the Qt fra Translations are done at https://www.transifex.com/projects/p/minitube/ Just register and apply for a language team. Please don't request translation merges on GitHub. -## Build instructions -To compile Minitube you need at least Qt 4.8. The following Qt modules are needed: -core, gui, network, sql (using the Sqlite plugin), script, dbus, phonon - -On a Debian or Ubuntu system, type: - - $ sudo apt-get install build-essential qt4-dev-tools libphonon-dev libqt4-sql-sqlite - -### Google API Key +## Google API Key Google is now requiring an API key in order to access YouTube Data web services. Create a "Browser Key" at https://console.developers.google.com @@ -21,22 +13,26 @@ Create a "Browser Key" at https://console.developers.google.com The key must be specified at compile time as shown below. Alternatively Minitube can read an API key from the GOOGLE_API_KEY environment variable. -### Compiling -Run: +## Build instructions +To compile Minitube you need at least Qt 4.8. The following Qt modules are needed: +core, gui, network, sql (using the Sqlite plugin), script, dbus, phonon - $ qmake "DEFINES += APP_GOOGLE_API_KEY=YouAPIKeyHere" +To be able to build on a Debian (or derivative) system: -and then: + $ sudo apt-get install build-essential qt4-dev-tools libphonon-dev libqt4-sql-sqlite + +Compiling: + $ qmake "DEFINES += APP_GOOGLE_API_KEY=YouAPIKeyHere" $ make Beware of the Qt3 or Qt5 version of qmake! If things go wrong try running qmake-qt4 instead. -### Running +Running: - $ ./build/target/minitube + $ build/target/minitube -### Installing on Linux +Installing on Linux: $ sudo make install -- 2.39.2