その他の KDE5 パッケージ

本節は、利用可能な KDE5 ソフトウェアコンパイレーション (KDE5 Software Compilation) のビルド手順までは説明しません。 ここに示すパッケージは、多くの方が標準的なデスクトップコンピューターにおいて利用したいと思うパッケージを選んでいます。

利用可能な全パッケージの詳細については KDE5 サーバー https://download.kde.org/stable/release-service/23.08.4/src を参照してください。

Editor Notes: https://wiki.linuxfromscratch.org/blfs/wiki/Further_KDE_Packages

その他の KDE パッケージとして取り上げるのは以下のものです。

[注記]

注記

Some packages will require additional dependencies. To determine what dependencies are needed, run from the top of the source tree:

cmake -Wno-dev -L .

Most of these packages can be built with the standard KDE5 instructions:

mkdir build &&
cd    build &&

cmake -DCMAKE_INSTALL_PREFIX=$KF5_PREFIX \
      -DCMAKE_BUILD_TYPE=Release         \
      -DBUILD_TESTING=OFF                \
      -Wno-dev .. &&
make

And as the root user:

make install