MATE Calculator
Source Code | Bug Tracker | Dependencies | Help
mate-calc is the official calculator for the MATE Desktop Environment. It has been designed to be used with either the mouse or the keyboard. It is visually similar to a lot of hand-held calculators.
Meson
Simple build procedure:
$ meson build --prefix=/usr # Build configuration
$ cd build
$ ninja # Build
After building the package you may install it:
[ Become root if necessary ]
$ ninja install # Installation
Autotools
Simple build procedure:
$ ./autogen.sh --prefix=/usr # Build configuration
$ make # Build
For installation to a separate prefix change the above ./autogen.sh
command to:
$ ./autogen.sh --prefix=/an/other/path
After building the package you may install it:
[ Become root if necessary ]
$ make install # Installation