Skip to content

dschopf/plasma-applet-qalculate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

plasma-applet-qalculate

Qalculate applet for the KDE Plasma 6 desktop, bringing the power of libqalculate to your desktop.

Arch Linux

Screenshots

Screenshot1 Screenshot2

Packages

Packaged binaries are available Arch Linux. Installation through the default Plasma KNewStuff3 system is also available at the Pling Store.

Arch Linux

Install this AUR package: plasma5-applets-qalculate.

yay -Syu plasma5-applets-qalculate

Building/Installing from source

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

Build dependencies

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