From c9097795145df1fb05a28cb34e3f01f6193d769b Mon Sep 17 00:00:00 2001 From: Cornelius Schumacher Date: Fri, 1 Aug 2014 00:45:38 +0200 Subject: [PATCH 1/2] Add instructions for compiling on openSUSE --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index ca830a7..54b50f3 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,25 @@ You can also install this [package](https://aur.archlinux.org/packages/cool-old- --- +**openSUSE** + +Install dependencies: + + sudo zypper ar http://download.opensuse.org/repositories/KDE:/Qt5/openSUSE_13.1/ KDE:Qt5 + sudo zypper install libqt5-qtbase-devel libqt5-qtdeclarative-devel libqt5-qtquickcontrols libqt5-qtgraphicaleffects + +Compile: + +```bash +git clone https://github.com/Swordifish90/cool-old-term.git +cd cool-old-term/konsole-qml-plugin +qmake-qt5 && make && make install +cd .. +./cool-old-term +``` + +--- + **Anyone else** Install Qt directly from here http://qt-project.org/downloads . Once done export them in you path (replace "_/opt/Qt5.3.1/5.3/gcc_64/bin_" with your correct folder): From 0de719b67f5e042cc3d81836e97054637fd33342 Mon Sep 17 00:00:00 2001 From: Cornelius Schumacher Date: Fri, 1 Aug 2014 16:38:29 +0200 Subject: [PATCH 2/2] Special Qt5 repo only needed for openSUSE 13.1 --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 54b50f3..3004ae6 100644 --- a/README.md +++ b/README.md @@ -65,9 +65,12 @@ You can also install this [package](https://aur.archlinux.org/packages/cool-old- **openSUSE** -Install dependencies: +Add repository with latest Qt 5 (this is only needed on openSUSE 13.1, Factory already has it): sudo zypper ar http://download.opensuse.org/repositories/KDE:/Qt5/openSUSE_13.1/ KDE:Qt5 + +Install dependencies: + sudo zypper install libqt5-qtbase-devel libqt5-qtdeclarative-devel libqt5-qtquickcontrols libqt5-qtgraphicaleffects Compile: