MATEwiki
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

MATE Calculator

Build Status GitHub release GitHub contributors License

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.

SYNOPSIS

   mate-calc [OPTIONS...] [FILES...]

OPTIONS

   -s, --solve <equation>
          Solve the equation provided following this option.

   --version
          Output version information and exit.

   -h, -?, --help
          Print standard command line options.

   --help-all
          Print all command line options.

   This program also accepts the standard GTK options.

Build / Install

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