Qalculate applet for the KDE Plasma 6 desktop, bringing the power of libqalculate to your desktop.
Packaged binaries are available Arch Linux. Installation through the default Plasma KNewStuff3 system is also available at the Pling Store.
Install this AUR package: plasma5-applets-qalculate.
yay -Syu plasma6-applets-qalculate
If there is no package available for your distribution, you can try to compile the source code yourself.
git clone https://github.com/dschopf/plasma-applet-qalculate.git paqalc && cd paqalc
mkdir build && cd build
LIB=lib cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_LIBDIR="$LIB" -DKDE_INSTALL_LIBDIR="$LIB" ..
make -j$(nproc)
sudo make install
Please note that this might require additional packages which are not part of these instructions.
For Debian 9 "Stretch"/Ubuntu 18.04 LTS "Bionic Beaver" and above, these are specifically:
- g++
- cmake
- extra-cmake-modules
- gettext (required for translations)
- pkg-config
- qtdeclarative5-dev
- libkf5plasma-dev
- libqalculate-dev
- libreadline-dev
and can all be installed with a single command as follows:
sudo apt install g++ cmake extra-cmake-modules gettext pkg-config qtdeclarative5-dev libkf5plasma-dev libqalculate-dev libreadline-dev