about summary refs log tree commit diff stats
path: root/README.md
blob: a1fe58538ca3267a3417dcb31fa97f45ea11539d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# rpncalc

simple rpn calculator inspired by emacs calc

To build:
```sh
DIR=build
meson $DIR
cd $DIR
ninja
```
To execute:
```sh
./rpncalc
```
Installation (inside build dir):
```sh
# needs root perms
sudo ninja install # alternatively: sudo samu install if you are using samurai
```