Frameworks/Binary Packages: Difference between revisions

From KDE Community Wiki
 
(43 intermediate revisions by 20 users not shown)
Line 1: Line 1:
You can obtain binary packages of KDE Frameworks 5 and Qt 5.2 in many distributions. This page aims to list the available binary packages, but it is not an exhaustive list and there may be new packages available that are not currently listed here.
#REDIRECT [[Get_KDE_Software_on_Your_Linux_Distro]]
 
[https://community.kde.org/Get_KDE_Software_on_Your_Linux_Distro Get KDE Software on Your Linux Distro]
=== Kubuntu ===
 
On Kubuntu, [http://techbase.kde.org/Getting_Started/Using_Project_Neon_to_contribute_to_KDE Project Neon] is available as PPAs which offers regularly updated development snapshots of KDE Frameworks. Packages will be installed to /opt/project-neon5 and will not contaminate your normal environment.
 
<syntaxhighlight lang="bash">
sudo apt-add-repository ppa:neon/kf5
sudo apt-get update
sudo apt-get install project-neon5-session project-neon5-utils \
project-neon5-konsole
</syntaxhighlight>
 
Alternatively KDE Frameworks 5 Tech Preview is being packaged in the [https://launchpad.net/~kubuntu-ppa/+archive/experimental/+packages experimental PPA].
 
<syntaxhighlight lang="bash">
sudo apt-add-repository ppa:kubuntu-ppa/experimental
sudo apt-add-repository ppa:canonical-qt5-edgers/canonical-qt5-edgers
sudo apt-get update
</syntaxhighlight>
 
=== openSUSE ===
 
On openSUSE, there are repositories with snapshots of KDE Frameworks 5 and Qt 5.2. You can add repositories in openSUSE through the graphical YaST software repositories module, in '''Software Repositories''' and then '''Add''' and '''Specify URL'''. Enter the URL of the links below.
 
You can also add repositories through the command line with zypper. Use the following command:
 
<syntaxhighlight lang="bash">
zypper ar -f <URL> <name>
</syntaxhighlight>
 
 
Where <name> should be an alias that is easy to remember.
 
==== Version: 12.3 ====
 
* [http://download.opensuse.org/repositories/KDE:/Qt52/openSUSE_12.3/ Qt 5.2 URL]
* [http://download.opensuse.org/repositories/KDE:/Unstable:/Frameworks/openSUSE_12.3/ KDE Frameworks 5 URL]
 
==== Version 13.1 ====
 
* [http://download.opensuse.org/repositories/KDE:/Qt52/openSUSE_13.1/ Qt 5.2 URL]
* [http://download.opensuse.org/repositories/KDE:/Unstable:/Frameworks/openSUSE_13.1/ KDE Frameworks 5 URL]
 
==== Factory ====
 
* [http://download.opensuse.org/repositories/KDE:/Qt52/openSUSE_Factory/ Qt 5.2 URL]
* [http://download.opensuse.org/repositories/KDE:/Unstable:/Frameworks/openSUSE_Factory/ KDE Frameworks 5 URL]
 
=== Arch Linux ===
 
On Arch Linux, packages for KDE Frameworks are available in the Arch User Repository (AUR). To install:
 
1. Save a list of the available packages, listed in this [https://gist.github.com/andreascarpino/8257468 GitHub gist] to a file called ''''list''''.
 
2. Execute the command
 
<syntaxhighlight lang='bash'>
for pkg in $(cat list); do cower -d $pkg && cd $pkg && makepkg -si --noconfirm || break && cd ..; done
</syntaxhighlight>
or using yaourt:
<syntaxhighlight lang='bash'>
for pkg in $(cat list); do yaourt -S --noconfirm $pkg; done
</syntaxhighlight>
 
For more details, [http://blog.andreascarpino.it/kde-frameworks-packages-on-arch-linux/ read this post] by Andrea Scarpino.
 
Qt 5.2 packages are listed in [https://www.archlinux.org/groups/x86_64/qt/ this group].
 
=== Fedora ===
 
There are currently no binary packages of KDE Frameworks for Fedora available, however you can get packages of Qt 5.2 for [http://admin.fedoraproject.org/updates/qt5-qtbase Fedora 20 here].

Latest revision as of 15:47, 10 December 2018