Git commit 6160ca07e29daba14659a64930459bc0aca0b011 by Yuri Chornoivan. Committed on 18/12/2016 at 13:10. Pushed by yurchor into branch 'master'.
Sync docs with new installation instructions M +19 -9 doc/installation.docbook https://commits.kde.org/krusader/6160ca07e29daba14659a64930459bc0aca0b011 diff --git a/doc/installation.docbook b/doc/installation.docbook index e82885db..f2b15a18 100644 --- a/doc/installation.docbook +++ b/doc/installation.docbook @@ -328,7 +328,7 @@ <para>c libraries</para> </listitem> <listitem> - <para>plasma-runtime and plasma-workspace libraries (&kde; Frameworks core libraries and binaries for &kf5-full; applications)</para> + <para>plasma-framework libraries (&kde; Frameworks core libraries and binaries for &kf5-full; applications)</para> </listitem> <listitem> <para>libqt5dbus5 (&Qt; 5 D-Bus module)</para> @@ -343,9 +343,6 @@ <para>libqt5gui5 (&Qt; 5 &GUI; module)</para> </listitem> <listitem> - <para>libgt5widgets5 (&Qt; 5 widgets module)</para> - </listitem> - <listitem> <para>libqt5printsupport5 (&Qt; 5 print support module)</para> </listitem> <!-- <listitem> @@ -460,6 +457,13 @@ if you only run a Krusader binary you do not need these packages.</para> <para>plasma-framework-dev (installs many development libraries for &kf5;)</para> </listitem> <listitem> + <para>kio-dev</para> + </listitem> + + <listitem> + <para>libkf5archive-dev</para> + </listitem> + <listitem> <para>libkf5parts-dev</para> </listitem> <listitem> @@ -479,7 +483,7 @@ if you only run a Krusader binary you do not need these packages.</para> </sect1> -<sect1 id="kde4_lin_install"> +<sect1 id="kde_lin_install"> <title>Installing on &Linux; and &BSD; platforms</title> <note> @@ -494,17 +498,23 @@ if you only run a Krusader binary you do not need these packages.</para> <para><command>-DCMAKE_INSTALL_PREFIX=/usr/</command> is the location where Krusader will be installed with the make command.</para> -<para>An other example is: <command>-DCMAKE_INSTALL_PRFIX=/opt/krusader</command> +<para>Another example is: <command>-DCMAKE_INSTALL_PRFIX=/opt/krusader</command> to install the compiled Krusader in an other directory to not overwrite the Krusader version installed by your package manager.</para> - + <note> + <para> + Please use <command>sudo</command> instead of <command>su -c</command> if you are using Ubuntu-based systems. + </para> + </note> <para> <screen> <prompt>$</prompt> <userinput><command>tar -xzvf</command> <option>krusader-2.5.0.tar.gz</option></userinput> <prompt>$</prompt> <userinput><command>cd</command> <option>krusader</option></userinput> - <prompt>$</prompt> <userinput><command>cmake</command> <option>-DCMAKE_INSTALL_PREFIX=/usr/ -DQT_INCLUDES=/usr/share/qt5/include</option></userinput> + <prompt>$</prompt> <userinput><command>mkdir</command> <option>build</option></userinput> + <prompt>$</prompt> <userinput><command>cd</command> <option>build</option></userinput> + <prompt>$</prompt> <userinput><command>cmake</command> <option>-DCMAKE_INSTALL_PREFIX=/usr/ -DQT_INCLUDES=/usr/share/qt5/include ..</option></userinput> <prompt>$</prompt> <userinput><command>make</command></userinput> - <prompt>$</prompt> <userinput><command>sudo</command> <option>make install</option></userinput> + <prompt>$</prompt> <userinput><command>su</command> <option>-c "make install"</option></userinput> </screen> </para>
